Skip to content

Commit 1df5035

Browse files
committed
change hotkeys that conflict with EditField's Ctrl-a
1 parent 6936ce8 commit 1df5035

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

gui/launcher.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ function TagFilterPanel:init()
261261
widgets.HotkeyLabel{
262262
frame={b=0, r=0},
263263
label='Cycle all',
264-
key='CUSTOM_CTRL_A',
264+
key='CUSTOM_CTRL_N',
265265
auto_width=true,
266266
on_activate=self:callback('toggle_all')
267267
},
@@ -388,7 +388,7 @@ function AutocompletePanel:init()
388388
widgets.Label{
389389
frame={l=0, t=3},
390390
text={
391-
{key='CUSTOM_CTRL_W', key_sep=': ', on_activate=open_filter_panel, text='Tags:'},
391+
{key='CUSTOM_CTRL_F', key_sep=': ', on_activate=open_filter_panel, text='Tags:'},
392392
{gap=1, pen=get_filter_pen, text=get_filter_text},
393393
},
394394
on_click=open_filter_panel,

gui/manipulator.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1057,7 +1057,7 @@ function QuickMenu:init()
10571057
},
10581058
widgets.HotkeyLabel{
10591059
frame={b=0, l=0},
1060-
key='CUSTOM_CTRL_A',
1060+
key='CUSTOM_CTRL_N',
10611061
label='Select all',
10621062
visible=self.multiselect,
10631063
on_activate=function()

internal/caravan/movegoods.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ function MoveGoods:init()
286286
widgets.HotkeyLabel{
287287
frame={l=0, b=0},
288288
label='Select all/none',
289-
key='CUSTOM_CTRL_A',
289+
key='CUSTOM_CTRL_N',
290290
on_activate=self:callback('toggle_visible'),
291291
auto_width=true,
292292
},

internal/caravan/pedestal.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -388,7 +388,7 @@ function AssignItems:init()
388388
widgets.HotkeyLabel{
389389
frame={l=0, b=2},
390390
label='Select all/none',
391-
key='CUSTOM_CTRL_A',
391+
key='CUSTOM_CTRL_N',
392392
on_activate=self:callback('toggle_visible'),
393393
auto_width=true,
394394
},

internal/caravan/trade.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ function Trade:init()
309309
widgets.HotkeyLabel{
310310
frame={l=0, b=0},
311311
label='Select all/none',
312-
key='CUSTOM_CTRL_A',
312+
key='CUSTOM_CTRL_N',
313313
on_activate=self:callback('toggle_visible'),
314314
auto_width=true,
315315
},
@@ -891,7 +891,7 @@ function Ethics:init()
891891
},
892892
widgets.HotkeyLabel{
893893
frame={l=0, b=0},
894-
key='CUSTOM_CTRL_A',
894+
key='CUSTOM_CTRL_N',
895895
label='Deselect items in trade list',
896896
auto_width=true,
897897
on_activate=self:callback('deselect_transgressions'),

0 commit comments

Comments
 (0)