Skip to content

Commit e36d5d8

Browse files
committed
Fix spelling
1 parent eb2b8d0 commit e36d5d8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Flow.Launcher/CustomQueryHotkeySetting.xaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,13 +153,13 @@
153153
Style="{StaticResource AccentButtonStyle}">
154154
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
155155
<TextBlock
156-
x:Name="lblAdd"
156+
x:Name="tbAdd"
157157
HorizontalAlignment="Center"
158158
VerticalAlignment="Center"
159159
Text="{DynamicResource done}"
160160
Visibility="Collapsed" />
161161
<TextBlock
162-
x:Name="lblUpdate"
162+
x:Name="tbUpdate"
163163
HorizontalAlignment="Center"
164164
VerticalAlignment="Center"
165165
Text="{DynamicResource update}"

Flow.Launcher/CustomQueryHotkeySetting.xaml.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ public partial class CustomQueryHotkeySetting : Window
1616
public CustomQueryHotkeySetting()
1717
{
1818
InitializeComponent();
19-
lblAdd.Visibility = Visibility.Visible;
19+
tbAdd.Visibility = Visibility.Visible;
2020
}
2121

2222
public CustomQueryHotkeySetting(CustomPluginHotkey hotkey)
@@ -25,7 +25,7 @@ public CustomQueryHotkeySetting(CustomPluginHotkey hotkey)
2525
update = true;
2626
ActionKeyword = originalCustomHotkey.ActionKeyword;
2727
InitializeComponent();
28-
lblUpdate.Visibility = Visibility.Visible;
28+
tbUpdate.Visibility = Visibility.Visible;
2929
HotkeyControl.SetHotkey(originalCustomHotkey.Hotkey, false);
3030
}
3131

0 commit comments

Comments
 (0)