mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix spelling
This commit is contained in:
parent
eb2b8d06a1
commit
e36d5d8ce7
2 changed files with 4 additions and 4 deletions
|
|
@ -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}"
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue