mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Add blank line back
This commit is contained in:
parent
d0c240f50f
commit
475db2bbe8
1 changed files with 55 additions and 44 deletions
|
|
@ -118,8 +118,10 @@
|
||||||
Foreground="{TemplateBinding Foreground}"
|
Foreground="{TemplateBinding Foreground}"
|
||||||
IsChecked="{Binding IsExpanded, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
|
IsChecked="{Binding IsExpanded, Mode=TwoWay, RelativeSource={RelativeSource TemplatedParent}}"
|
||||||
Style="{StaticResource ExpanderHeaderRightArrowStyle}" />
|
Style="{StaticResource ExpanderHeaderRightArrowStyle}" />
|
||||||
<Border x:Name="ContentPresenterBorder" BorderThickness="0,1,0,0"
|
<Border
|
||||||
BorderBrush="{DynamicResource Color03B}">
|
x:Name="ContentPresenterBorder"
|
||||||
|
BorderBrush="{DynamicResource Color03B}"
|
||||||
|
BorderThickness="0 1 0 0">
|
||||||
<ContentPresenter
|
<ContentPresenter
|
||||||
x:Name="ExpandSite"
|
x:Name="ExpandSite"
|
||||||
Margin="{TemplateBinding Padding}"
|
Margin="{TemplateBinding Padding}"
|
||||||
|
|
@ -143,11 +145,15 @@
|
||||||
<DoubleAnimation
|
<DoubleAnimation
|
||||||
Storyboard.TargetName="ContentPresenterBorder"
|
Storyboard.TargetName="ContentPresenterBorder"
|
||||||
Storyboard.TargetProperty="(Border.LayoutTransform).(ScaleTransform.ScaleY)"
|
Storyboard.TargetProperty="(Border.LayoutTransform).(ScaleTransform.ScaleY)"
|
||||||
From="0.0" To="1.0" Duration="0:0:0" />
|
From="0.0"
|
||||||
|
To="1.0"
|
||||||
|
Duration="0:0:0" />
|
||||||
<DoubleAnimation
|
<DoubleAnimation
|
||||||
Storyboard.TargetName="ContentPresenterBorder"
|
Storyboard.TargetName="ContentPresenterBorder"
|
||||||
Storyboard.TargetProperty="(Border.Opacity)"
|
Storyboard.TargetProperty="(Border.Opacity)"
|
||||||
From="0.0" To="1.0" Duration="0:0:0" />
|
From="0.0"
|
||||||
|
To="1.0"
|
||||||
|
Duration="0:0:0" />
|
||||||
</Storyboard>
|
</Storyboard>
|
||||||
</BeginStoryboard>
|
</BeginStoryboard>
|
||||||
</Trigger.EnterActions>
|
</Trigger.EnterActions>
|
||||||
|
|
@ -157,11 +163,15 @@
|
||||||
<DoubleAnimation
|
<DoubleAnimation
|
||||||
Storyboard.TargetName="ContentPresenterBorder"
|
Storyboard.TargetName="ContentPresenterBorder"
|
||||||
Storyboard.TargetProperty="(Border.LayoutTransform).(ScaleTransform.ScaleY)"
|
Storyboard.TargetProperty="(Border.LayoutTransform).(ScaleTransform.ScaleY)"
|
||||||
From="1.0" To="0.0" Duration="0:0:0" />
|
From="1.0"
|
||||||
|
To="0.0"
|
||||||
|
Duration="0:0:0" />
|
||||||
<DoubleAnimation
|
<DoubleAnimation
|
||||||
Storyboard.TargetName="ContentPresenterBorder"
|
Storyboard.TargetName="ContentPresenterBorder"
|
||||||
Storyboard.TargetProperty="(Border.Opacity)"
|
Storyboard.TargetProperty="(Border.Opacity)"
|
||||||
From="1.0" To="0.0" Duration="0:0:0" />
|
From="1.0"
|
||||||
|
To="0.0"
|
||||||
|
Duration="0:0:0" />
|
||||||
</Storyboard>
|
</Storyboard>
|
||||||
</BeginStoryboard>
|
</BeginStoryboard>
|
||||||
</Trigger.ExitActions>
|
</Trigger.ExitActions>
|
||||||
|
|
@ -367,6 +377,7 @@
|
||||||
HorizontalAlignment="Left"
|
HorizontalAlignment="Left"
|
||||||
Text="{Binding ExcludedFileTypes}"
|
Text="{Binding ExcludedFileTypes}"
|
||||||
ToolTip="{DynamicResource plugin_explorer_Excluded_File_Types_Tooltip}" />
|
ToolTip="{DynamicResource plugin_explorer_Excluded_File_Types_Tooltip}" />
|
||||||
|
|
||||||
<TextBlock
|
<TextBlock
|
||||||
Grid.Row="9"
|
Grid.Row="9"
|
||||||
Grid.Column="0"
|
Grid.Column="0"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue