Skip to content

Commit

Permalink
Auto enable notes overlay when gui/notes is visible
Browse files Browse the repository at this point in the history
  • Loading branch information
wiktor-obrebski committed Sep 10, 2024
1 parent 440bd5e commit 773e21f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions gui/notes.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ local gui = require 'gui'
local widgets = require 'gui.widgets'
local guidm = require('gui.dwarfmode')
local script = require 'gui.script'
local overlay = require 'plugins.overlay'
local text_editor = reqscript('internal/journal/text_editor')
local note_manager = reqscript('internal/notes/note_manager')

Expand All @@ -13,6 +14,7 @@ local map_points = df.global.plotinfo.waypoints.points
local NOTE_LIST_RESIZE_MIN = {w=26}
local RESIZE_MIN = {w=65, h=30}
local NOTE_SEARCH_BATCH_SIZE = 25
local OVERLAY_NAME = 'notes.map_notes'

local green_pin = dfhack.textures.loadTileset(
'hack/data/art/note_green_pin_map.png',
Expand Down Expand Up @@ -351,7 +353,17 @@ function NotesScreen:onRenderFrame(dc, rect)
end
end

function NotesScreen:onAboutToShow()
if not overlay.get_state().config[OVERLAY_NAME].enabled then
self.should_disable_overlay = true
overlay.overlay_command({'enable', 'notes.map_notes'})
end
end

function NotesScreen:onDismiss()
if self.should_disable_overlay then
overlay.overlay_command({'disable', 'notes.map_notes'})
end
view = nil
end

Expand Down

0 comments on commit 773e21f

Please sign in to comment.