mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
- Adjust ResultListItem Layout for Large Window Size
- Change Window Max Width to 1920 from 900
This commit is contained in:
parent
fabb396dec
commit
a2d9cb6f2d
2 changed files with 11 additions and 15 deletions
|
|
@ -30,7 +30,7 @@
|
||||||
|
|
||||||
<ListBox.ItemTemplate>
|
<ListBox.ItemTemplate>
|
||||||
<DataTemplate>
|
<DataTemplate>
|
||||||
<Button>
|
<Button HorizontalAlignment="Stretch">
|
||||||
<Button.Template>
|
<Button.Template>
|
||||||
<ControlTemplate>
|
<ControlTemplate>
|
||||||
<ContentPresenter Content="{TemplateBinding Button.Content}" />
|
<ContentPresenter Content="{TemplateBinding Button.Content}" />
|
||||||
|
|
@ -39,9 +39,10 @@
|
||||||
<Button.Content>
|
<Button.Content>
|
||||||
<Grid
|
<Grid
|
||||||
Margin="0"
|
Margin="0"
|
||||||
HorizontalAlignment="Left"
|
HorizontalAlignment="Stretch"
|
||||||
VerticalAlignment="Stretch"
|
VerticalAlignment="Stretch"
|
||||||
Cursor="Hand"
|
Cursor="Hand"
|
||||||
|
ShowGridLines="True"
|
||||||
UseLayoutRounding="False">
|
UseLayoutRounding="False">
|
||||||
<Grid.Resources>
|
<Grid.Resources>
|
||||||
<converter:HighlightTextConverter x:Key="HighlightTextConverter" />
|
<converter:HighlightTextConverter x:Key="HighlightTextConverter" />
|
||||||
|
|
@ -50,7 +51,7 @@
|
||||||
</Grid.Resources>
|
</Grid.Resources>
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="60" />
|
<ColumnDefinition Width="60" />
|
||||||
<ColumnDefinition Width="*" />
|
<ColumnDefinition Width="9*" />
|
||||||
<ColumnDefinition Width="Auto" />
|
<ColumnDefinition Width="Auto" />
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<StackPanel
|
<StackPanel
|
||||||
|
|
@ -129,12 +130,9 @@
|
||||||
<TextBlock
|
<TextBlock
|
||||||
x:Name="SubTitle"
|
x:Name="SubTitle"
|
||||||
Grid.Row="1"
|
Grid.Row="1"
|
||||||
MinWidth="750"
|
|
||||||
Style="{DynamicResource ItemSubTitleStyle}"
|
Style="{DynamicResource ItemSubTitleStyle}"
|
||||||
Text="{Binding Result.SubTitle}"
|
Text="{Binding Result.SubTitle}"
|
||||||
ToolTip="{Binding ShowSubTitleToolTip}">
|
ToolTip="{Binding ShowSubTitleToolTip}" />
|
||||||
|
|
||||||
</TextBlock>
|
|
||||||
|
|
||||||
</Grid>
|
</Grid>
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -597,9 +597,7 @@
|
||||||
<StackPanel Style="{StaticResource TextPanel}">
|
<StackPanel Style="{StaticResource TextPanel}">
|
||||||
<TextBlock Style="{DynamicResource SettingTitleLabel}" Text="{DynamicResource startFlowLauncherOnSystemStartup}" />
|
<TextBlock Style="{DynamicResource SettingTitleLabel}" Text="{DynamicResource startFlowLauncherOnSystemStartup}" />
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
<CheckBox
|
<CheckBox IsChecked="{Binding StartFlowLauncherOnSystemStartup}" Style="{DynamicResource SideControlCheckBox}" />
|
||||||
IsChecked="{Binding StartFlowLauncherOnSystemStartup}"
|
|
||||||
Style="{DynamicResource SideControlCheckBox}" />
|
|
||||||
<TextBlock Style="{StaticResource Glyph}">
|
<TextBlock Style="{StaticResource Glyph}">
|
||||||

|

|
||||||
</TextBlock>
|
</TextBlock>
|
||||||
|
|
@ -1621,7 +1619,7 @@
|
||||||
Margin="0,0,18,0"
|
Margin="0,0,18,0"
|
||||||
IsMoveToPointEnabled="True"
|
IsMoveToPointEnabled="True"
|
||||||
IsSnapToTickEnabled="True"
|
IsSnapToTickEnabled="True"
|
||||||
Maximum="900"
|
Maximum="1920"
|
||||||
Minimum="400"
|
Minimum="400"
|
||||||
TickFrequency="10"
|
TickFrequency="10"
|
||||||
Value="{Binding WindowWidthSize, Mode=TwoWay}" />
|
Value="{Binding WindowWidthSize, Mode=TwoWay}" />
|
||||||
|
|
@ -1792,9 +1790,9 @@
|
||||||
Margin="20,0,0,0"
|
Margin="20,0,0,0"
|
||||||
HorizontalAlignment="Left"
|
HorizontalAlignment="Left"
|
||||||
VerticalAlignment="Top"
|
VerticalAlignment="Top"
|
||||||
|
IsSynchronizedWithCurrentItem="False"
|
||||||
ItemsSource="{Binding Source={StaticResource SortedFonts}}"
|
ItemsSource="{Binding Source={StaticResource SortedFonts}}"
|
||||||
SelectedItem="{Binding SelectedQueryBoxFont}"
|
SelectedItem="{Binding SelectedQueryBoxFont}" />
|
||||||
IsSynchronizedWithCurrentItem="False" />
|
|
||||||
<ComboBox
|
<ComboBox
|
||||||
Width="130"
|
Width="130"
|
||||||
Margin="10,0,0,0"
|
Margin="10,0,0,0"
|
||||||
|
|
@ -1843,9 +1841,9 @@
|
||||||
Margin="20,-2,0,0"
|
Margin="20,-2,0,0"
|
||||||
HorizontalAlignment="Left"
|
HorizontalAlignment="Left"
|
||||||
VerticalAlignment="Top"
|
VerticalAlignment="Top"
|
||||||
|
IsSynchronizedWithCurrentItem="False"
|
||||||
ItemsSource="{Binding Source={StaticResource SortedFonts}}"
|
ItemsSource="{Binding Source={StaticResource SortedFonts}}"
|
||||||
SelectedItem="{Binding SelectedResultFont}"
|
SelectedItem="{Binding SelectedResultFont}" />
|
||||||
IsSynchronizedWithCurrentItem="False" />
|
|
||||||
<ComboBox
|
<ComboBox
|
||||||
Width="130"
|
Width="130"
|
||||||
Margin="10,-2,0,0"
|
Margin="10,-2,0,0"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue