Fix spelling

This commit is contained in:
Jack251970 2025-07-10 13:24:07 +08:00
parent eb2b8d06a1
commit e36d5d8ce7
2 changed files with 4 additions and 4 deletions

View file

@ -153,13 +153,13 @@
Style="{StaticResource AccentButtonStyle}"> Style="{StaticResource AccentButtonStyle}">
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch"> <Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<TextBlock <TextBlock
x:Name="lblAdd" x:Name="tbAdd"
HorizontalAlignment="Center" HorizontalAlignment="Center"
VerticalAlignment="Center" VerticalAlignment="Center"
Text="{DynamicResource done}" Text="{DynamicResource done}"
Visibility="Collapsed" /> Visibility="Collapsed" />
<TextBlock <TextBlock
x:Name="lblUpdate" x:Name="tbUpdate"
HorizontalAlignment="Center" HorizontalAlignment="Center"
VerticalAlignment="Center" VerticalAlignment="Center"
Text="{DynamicResource update}" Text="{DynamicResource update}"

View file

@ -16,7 +16,7 @@ namespace Flow.Launcher
public CustomQueryHotkeySetting() public CustomQueryHotkeySetting()
{ {
InitializeComponent(); InitializeComponent();
lblAdd.Visibility = Visibility.Visible; tbAdd.Visibility = Visibility.Visible;
} }
public CustomQueryHotkeySetting(CustomPluginHotkey hotkey) public CustomQueryHotkeySetting(CustomPluginHotkey hotkey)
@ -25,7 +25,7 @@ namespace Flow.Launcher
update = true; update = true;
ActionKeyword = originalCustomHotkey.ActionKeyword; ActionKeyword = originalCustomHotkey.ActionKeyword;
InitializeComponent(); InitializeComponent();
lblUpdate.Visibility = Visibility.Visible; tbUpdate.Visibility = Visibility.Visible;
HotkeyControl.SetHotkey(originalCustomHotkey.Hotkey, false); HotkeyControl.SetHotkey(originalCustomHotkey.Hotkey, false);
} }