File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 153
153
Style =" {StaticResource AccentButtonStyle}" >
154
154
<Grid HorizontalAlignment =" Stretch" VerticalAlignment =" Stretch" >
155
155
<TextBlock
156
- x : Name =" lblAdd "
156
+ x : Name =" tbAdd "
157
157
HorizontalAlignment =" Center"
158
158
VerticalAlignment =" Center"
159
159
Text =" {DynamicResource done}"
160
160
Visibility =" Collapsed" />
161
161
<TextBlock
162
- x : Name =" lblUpdate "
162
+ x : Name =" tbUpdate "
163
163
HorizontalAlignment =" Center"
164
164
VerticalAlignment =" Center"
165
165
Text =" {DynamicResource update}"
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ public partial class CustomQueryHotkeySetting : Window
16
16
public CustomQueryHotkeySetting ( )
17
17
{
18
18
InitializeComponent ( ) ;
19
- lblAdd . Visibility = Visibility . Visible ;
19
+ tbAdd . Visibility = Visibility . Visible ;
20
20
}
21
21
22
22
public CustomQueryHotkeySetting ( CustomPluginHotkey hotkey )
@@ -25,7 +25,7 @@ public CustomQueryHotkeySetting(CustomPluginHotkey hotkey)
25
25
update = true ;
26
26
ActionKeyword = originalCustomHotkey . ActionKeyword ;
27
27
InitializeComponent ( ) ;
28
- lblUpdate . Visibility = Visibility . Visible ;
28
+ tbUpdate . Visibility = Visibility . Visible ;
29
29
HotkeyControl . SetHotkey ( originalCustomHotkey . Hotkey , false ) ;
30
30
}
31
31
You can’t perform that action at this time.
0 commit comments