Skip to content

Commit

Permalink
Fixed wrong TeachingTip zindex/context
Browse files Browse the repository at this point in the history
  • Loading branch information
KimihikoAkayasaki committed Oct 2, 2022
1 parent ae1f7fd commit 3aabc8a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Amethyst/MainWindow.xaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<Window
<Window
x:Class="Amethyst.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Expand Down Expand Up @@ -69,6 +69,7 @@

<Grid.Resources>
<TeachingTip x:Name="InitializerTeachingTip"
Canvas.ZIndex="100"
Title="/WELCOME"
Subtitle="/TEXT"
PreferredPlacement="Top"
Expand All @@ -81,6 +82,7 @@
CloseButtonClick="InitializerTeachingTip_CloseButtonClick" />

<TeachingTip x:Name="ShutdownTeachingTip"
Canvas.ZIndex="100"
Title="/SHUTDOWN"
Subtitle="/TEXT"
PreferredPlacement="TopRight"
Expand All @@ -89,6 +91,7 @@
IsLightDismissEnabled="True" />

<TeachingTip x:Name="ReloadTeachingTip"
Canvas.ZIndex="100"
Title="/RELOAD"
Subtitle="/TEXT"
PreferredPlacement="TopRight"
Expand Down

0 comments on commit 3aabc8a

Please sign in to comment.