Skip to content

Commit 0acc961

Browse files
authored
Update zForceWorkshopJobsNow.lua
updated hotkey as the user may want to use o or f keys when choosing a material or when using the workstation work order option.
1 parent 68f0b2a commit 0acc961

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

zForceWorkshopJobsNow.lua

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ ForceJobsOverlay.ATTRS {
9999
'dwarfmode/ViewSheets/BUILDING/Workshop/Quern/Items',
100100
},
101101
default_enabled = true,
102-
default_pos = {x = -41, y = 9},
103-
frame = {w = 18, h = 3, transparent = true},
102+
default_pos = {x = -39, y = 9},
103+
frame = {w = 22, h = 3, transparent = true},
104104
}
105105

106106
function ForceJobsOverlay:init()
@@ -112,23 +112,23 @@ function ForceJobsOverlay:init()
112112
frame_background = gui.CLEAR_PEN,
113113
subviews = {
114114
widgets.Label{
115-
frame = {l = 1, t = 0},
115+
frame = {l = 0, t = 0},
116116
text = 'Prioritize All:',
117117
},
118118
widgets.HotkeyLabel{
119-
frame = {l = 1, t = 2},
119+
frame = {l = 0, t = 2},
120120
label = 'ON',
121-
key = 'CUSTOM_O',
121+
key = 'CUSTOM_CTRL_O',
122122
auto_width = true,
123123
on_activate = function()
124124
self.toggle_state = true
125125
ForceJobs.prioritize_all_jobs()
126126
end,
127127
},
128128
widgets.HotkeyLabel{
129-
frame = {l = 9, t = 2},
129+
frame = {l = 11, t = 2},
130130
label = 'OFF',
131-
key = 'CUSTOM_F',
131+
key = 'CUSTOM_CTRL_I',
132132
auto_width = true,
133133
on_activate = function()
134134
self.toggle_state = false

0 commit comments

Comments
 (0)