Skip to content

Commit

Permalink
fix: anomaly set on the lower left of the overlay (static) (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
Mouchoir authored Nov 6, 2023
1 parent 49cd6a5 commit ba02a75
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions HDTAnomalyDisplay/AnomalyDisplay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ public void InitializeView(int cardDbfId)
cardImage = new CardImage();

Core.OverlayCanvas.Children.Add(cardImage);
Canvas.SetBottom(cardImage, 400);
Canvas.SetRight(cardImage, 20);
Canvas.SetBottom(cardImage, 50);
Canvas.SetLeft(cardImage, 0);
cardImage.Visibility = System.Windows.Visibility.Visible;
}

Expand Down
4 changes: 2 additions & 2 deletions HDTAnomalyDisplay/AnomalyDisplayPlugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ public class AnomalyDisplayPlugin : IPlugin
public string ButtonText => "NO SETTINGS";
// public string ButtonText => Strings.GetLocalized("");

public string Author => "Mouchoir";
public string Author => "Mouchoir & Tignus";

public Version Version => new Version(0, 2);
public Version Version => new Version(1, 0);

public MenuItem MenuItem => null;

Expand Down

0 comments on commit ba02a75

Please sign in to comment.