mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Merge pull request #3737 from Flow-Launcher/tab_sequence
Fix tab sequence
This commit is contained in:
commit
00a80ae7a7
1 changed files with 14 additions and 12 deletions
|
|
@ -118,24 +118,26 @@
|
||||||
FontSize="14"
|
FontSize="14"
|
||||||
Text="{DynamicResource customShortcutExpansion}" />
|
Text="{DynamicResource customShortcutExpansion}" />
|
||||||
|
|
||||||
<DockPanel
|
<Grid Grid.Row="1" Grid.Column="1">
|
||||||
Grid.Row="1"
|
<Grid.ColumnDefinitions>
|
||||||
Grid.Column="1"
|
<ColumnDefinition Width="*" />
|
||||||
LastChildFill="True">
|
<ColumnDefinition Width="Auto" />
|
||||||
<Button
|
</Grid.ColumnDefinitions>
|
||||||
x:Name="btnTestShortcut"
|
|
||||||
Margin="0 0 10 0"
|
|
||||||
Padding="10 5 10 5"
|
|
||||||
Click="BtnTestShortcut_OnClick"
|
|
||||||
Content="{DynamicResource preview}"
|
|
||||||
DockPanel.Dock="Right" />
|
|
||||||
<TextBox
|
<TextBox
|
||||||
x:Name="tbExpand"
|
x:Name="tbExpand"
|
||||||
|
Grid.Column="0"
|
||||||
Margin="10 0 10 0"
|
Margin="10 0 10 0"
|
||||||
HorizontalAlignment="Stretch"
|
HorizontalAlignment="Stretch"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
Text="{Binding Value}" />
|
Text="{Binding Value}" />
|
||||||
</DockPanel>
|
<Button
|
||||||
|
x:Name="btnTestShortcut"
|
||||||
|
Grid.Column="1"
|
||||||
|
Margin="0 0 10 0"
|
||||||
|
Padding="10 5 10 5"
|
||||||
|
Click="BtnTestShortcut_OnClick"
|
||||||
|
Content="{DynamicResource preview}" />
|
||||||
|
</Grid>
|
||||||
</Grid>
|
</Grid>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue