add FRAME_THIN

develop
Myk Taylor 2023-11-01 18:20:25 -07:00
parent 0e00dd8777
commit 3f069d469d
No known key found for this signature in database
3 changed files with 8 additions and 0 deletions

@ -73,6 +73,7 @@ Template for new versions:
## Lua ## Lua
- ``dfhack.gui.revealInDwarfmodeMap``: gained ``highlight`` parameter to control setting the tile highlight on the zoom target - ``dfhack.gui.revealInDwarfmodeMap``: gained ``highlight`` parameter to control setting the tile highlight on the zoom target
- ``dfhack.maps.getWalkableGroup``: get the walkability group of a tile - ``dfhack.maps.getWalkableGroup``: get the walkability group of a tile
- ``gui.FRAME_THIN``: a panel frame suitable for floating tooltips
## Removed ## Removed

@ -4583,6 +4583,10 @@ There are the following predefined frame style tables:
A frame suitable for overlay widget panels. A frame suitable for overlay widget panels.
* ``FRAME_THIN``
A frame suitable for floating tooltip panels that need the DFHack signature.
* ``FRAME_BOLD`` * ``FRAME_BOLD``
A frame suitable for a non-draggable panel meant to capture the user's focus, A frame suitable for a non-draggable panel meant to capture the user's focus,

@ -940,6 +940,9 @@ end
function FRAME_BOLD() function FRAME_BOLD()
return make_frame(textures.tp_border_bold, true) return make_frame(textures.tp_border_bold, true)
end end
function FRAME_THIN()
return make_frame(textures.tp_border_thin, false)
end
function FRAME_INTERIOR() function FRAME_INTERIOR()
local frame = make_frame(textures.tp_border_thin, false) local frame = make_frame(textures.tp_border_thin, false)
frame.signature_pen = false frame.signature_pen = false