Skip to content

Commit 63028e4

Browse files
committed
Merge remote-tracking branch 'origin' into HEAD
2 parents 698c98a + 3a919bc commit 63028e4

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ Template for new versions:
3535

3636
## Fixes
3737
- `idle-crafting`: check that units still have crafting needs before creating a job for them
38+
- `gui/journal`: prevent pause/unpause events from leaking through the UI when keys are mashed
3839

3940
## Misc Improvements
4041

gui/journal.lua

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -268,6 +268,7 @@ end
268268
JournalScreen = defclass(JournalScreen, gui.ZScreen)
269269
JournalScreen.ATTRS {
270270
focus_path='journal',
271+
pass_pause=false,
271272
context_mode=DEFAULT_NIL,
272273
save_layout=true,
273274
save_prefix=''

gui/sitemap.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ end
368368
SitemapToolbarOverlay = defclass(SitemapToolbarOverlay, overlay.OverlayWidget)
369369
SitemapToolbarOverlay.ATTRS{
370370
desc='Adds a button to the toolbar at the bottom left corner of the screen for launching gui/sitemap.',
371-
default_pos={x=35, y=-1},
371+
default_pos={x=34, y=-1},
372372
default_enabled=true,
373373
viewscreens='dwarfmode',
374374
frame={w=28, h=10},
@@ -392,7 +392,7 @@ function SitemapToolbarOverlay:init()
392392
widgets.Label{
393393
text={
394394
'Open the general search', NEWLINE,
395-
'interface.', NEWLINE,
395+
'and zoom interface.', NEWLINE,
396396
NEWLINE,
397397
{text='Hotkey: ', pen=COLOR_GRAY}, {key='CUSTOM_CTRL_G'},
398398
},

0 commit comments

Comments
 (0)