mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Change Default Browser Area to responsive
This commit is contained in:
parent
213396b382
commit
5a75f7658a
1 changed files with 16 additions and 17 deletions
|
|
@ -86,8 +86,8 @@
|
||||||
Text="{DynamicResource defaultBrowser_name}" />
|
Text="{DynamicResource defaultBrowser_name}" />
|
||||||
<ComboBox
|
<ComboBox
|
||||||
Name="comboBox"
|
Name="comboBox"
|
||||||
Width="200"
|
|
||||||
Height="35"
|
Height="35"
|
||||||
|
MinWidth="200"
|
||||||
Margin="14,0,0,0"
|
Margin="14,0,0,0"
|
||||||
HorizontalAlignment="Left"
|
HorizontalAlignment="Left"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
|
|
@ -121,8 +121,8 @@
|
||||||
Orientation="Horizontal">
|
Orientation="Horizontal">
|
||||||
<Grid Width="480">
|
<Grid Width="480">
|
||||||
<Grid.ColumnDefinitions>
|
<Grid.ColumnDefinitions>
|
||||||
<ColumnDefinition Width="150" />
|
<ColumnDefinition Width="Auto" />
|
||||||
<ColumnDefinition />
|
<ColumnDefinition Width="2*" />
|
||||||
</Grid.ColumnDefinitions>
|
</Grid.ColumnDefinitions>
|
||||||
<Grid.RowDefinitions>
|
<Grid.RowDefinitions>
|
||||||
<RowDefinition />
|
<RowDefinition />
|
||||||
|
|
@ -133,7 +133,7 @@
|
||||||
<TextBlock
|
<TextBlock
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
Grid.Column="0"
|
Grid.Column="0"
|
||||||
Margin="14,5,0,0"
|
Margin="14,5,10,0"
|
||||||
HorizontalAlignment="Left"
|
HorizontalAlignment="Left"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
FontSize="14"
|
FontSize="14"
|
||||||
|
|
@ -143,7 +143,7 @@
|
||||||
Grid.Row="0"
|
Grid.Row="0"
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
Width="Auto"
|
Width="Auto"
|
||||||
Margin="10,5,15,0"
|
Margin="10,5,0,0"
|
||||||
HorizontalAlignment="Stretch"
|
HorizontalAlignment="Stretch"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
IsEnabled="{Binding Editable}"
|
IsEnabled="{Binding Editable}"
|
||||||
|
|
@ -156,21 +156,13 @@
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
FontSize="14"
|
FontSize="14"
|
||||||
Text="{DynamicResource defaultBrowser_path}" />
|
Text="{DynamicResource defaultBrowser_path}" />
|
||||||
<StackPanel
|
<DockPanel
|
||||||
Grid.Row="1"
|
Grid.Row="1"
|
||||||
Grid.Column="1"
|
Grid.Column="1"
|
||||||
Orientation="Horizontal">
|
HorizontalAlignment="Stretch"
|
||||||
<TextBox
|
LastChildFill="True">
|
||||||
x:Name="PathTextBox"
|
|
||||||
Width="220"
|
|
||||||
Margin="10,10,5,0"
|
|
||||||
HorizontalAlignment="Stretch"
|
|
||||||
VerticalAlignment="Center"
|
|
||||||
IsEnabled="{Binding Editable}"
|
|
||||||
Text="{Binding Path}" />
|
|
||||||
<Button
|
<Button
|
||||||
Name="btnBrowseFile"
|
Name="btnBrowseFile"
|
||||||
Width="80"
|
|
||||||
Margin="0,10,0,0"
|
Margin="0,10,0,0"
|
||||||
HorizontalAlignment="Right"
|
HorizontalAlignment="Right"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
|
|
@ -187,7 +179,14 @@
|
||||||
</Style>
|
</Style>
|
||||||
</Button.Style>
|
</Button.Style>
|
||||||
</Button>
|
</Button>
|
||||||
</StackPanel>
|
<TextBox
|
||||||
|
x:Name="PathTextBox"
|
||||||
|
Margin="10,10,5,0"
|
||||||
|
HorizontalAlignment="Stretch"
|
||||||
|
VerticalAlignment="Center"
|
||||||
|
IsEnabled="{Binding Editable}"
|
||||||
|
Text="{Binding Path}" />
|
||||||
|
</DockPanel>
|
||||||
|
|
||||||
<StackPanel
|
<StackPanel
|
||||||
Grid.Row="2"
|
Grid.Row="2"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue