Skip to content

Commit 00a80ae

Browse files
authored
Merge pull request #3737 from Flow-Launcher/tab_sequence
Fix tab sequence
2 parents 5e026c0 + f3ce697 commit 00a80ae

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

Flow.Launcher/CustomShortcutSetting.xaml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -118,24 +118,26 @@
118118
FontSize="14"
119119
Text="{DynamicResource customShortcutExpansion}" />
120120

121-
<DockPanel
122-
Grid.Row="1"
123-
Grid.Column="1"
124-
LastChildFill="True">
125-
<Button
126-
x:Name="btnTestShortcut"
127-
Margin="0 0 10 0"
128-
Padding="10 5 10 5"
129-
Click="BtnTestShortcut_OnClick"
130-
Content="{DynamicResource preview}"
131-
DockPanel.Dock="Right" />
121+
<Grid Grid.Row="1" Grid.Column="1">
122+
<Grid.ColumnDefinitions>
123+
<ColumnDefinition Width="*" />
124+
<ColumnDefinition Width="Auto" />
125+
</Grid.ColumnDefinitions>
132126
<TextBox
133127
x:Name="tbExpand"
128+
Grid.Column="0"
134129
Margin="10 0 10 0"
135130
HorizontalAlignment="Stretch"
136131
VerticalAlignment="Center"
137132
Text="{Binding Value}" />
138-
</DockPanel>
133+
<Button
134+
x:Name="btnTestShortcut"
135+
Grid.Column="1"
136+
Margin="0 0 10 0"
137+
Padding="10 5 10 5"
138+
Click="BtnTestShortcut_OnClick"
139+
Content="{DynamicResource preview}" />
140+
</Grid>
139141
</Grid>
140142
</StackPanel>
141143
</StackPanel>

0 commit comments

Comments
 (0)