Skip to content

Commit

Permalink
Fix the button tooltip being visible on the top left corner screen
Browse files Browse the repository at this point in the history
  • Loading branch information
C1rdec committed Jan 4, 2020
1 parent 0c4d395 commit c0edd3c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Lurker.UI/ViewModels/ShellViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public bool StartWithWindows
/// </summary>
public void Close()
{
this._tradeBarOverlay.TryClose();
this._tradeBarOverlay?.TryClose();
this.TryClose();
}

Expand Down
2 changes: 1 addition & 1 deletion src/Lurker.UI/Views/TradeOfferView.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@
</ControlTemplate>
</Button.Template>
<Button.ToolTip>
<ToolTip Placement="Top" IsOpen="True" StaysOpen="True">
<ToolTip Placement="Top">
<Grid>
<Grid.RowDefinitions>
<RowDefinition></RowDefinition>
Expand Down

0 comments on commit c0edd3c

Please sign in to comment.