Skip to content

Commit

Permalink
Fix conflict in visibility of metadata panel between full screen and …
Browse files Browse the repository at this point in the history
…overlay
  • Loading branch information
RupertAvery committed Feb 13, 2024
1 parent 13d8ecd commit da1252a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Diffusion.Toolkit/Preview.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@

<Grid Background="{x:Null}">
<Grid.RenderTransform>
<TranslateTransform X="0"></TranslateTransform>
<TranslateTransform X="500"></TranslateTransform>
</Grid.RenderTransform>
<Grid.Style>
<Style TargetType="Grid">
Expand All @@ -85,7 +85,7 @@
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.X)"
From="-10" To="500"
From="500" To="-10"
Duration="0:0:0.1" />
</Storyboard>
</BeginStoryboard>
Expand All @@ -94,7 +94,7 @@
<BeginStoryboard>
<Storyboard>
<DoubleAnimation Storyboard.TargetProperty="(UIElement.RenderTransform).(TranslateTransform.X)"
From="500" To="-10"
From="-10" To="500"
Duration="0:0:0.1" />
</Storyboard>
</BeginStoryboard>
Expand Down

0 comments on commit da1252a

Please sign in to comment.