File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ Template for new versions:
7373## Lua
7474- ``dfhack.gui.revealInDwarfmodeMap``: gained ``highlight`` parameter to control setting the tile highlight on the zoom target
7575- ``dfhack.maps.getWalkableGroup``: get the walkability group of a tile
76+ - ``gui.FRAME_THIN``: a panel frame suitable for floating tooltips
7677
7778## Removed
7879
Original file line number Diff line number Diff line change @@ -4583,6 +4583,10 @@ There are the following predefined frame style tables:
45834583
45844584 A frame suitable for overlay widget panels.
45854585
4586+ * ``FRAME_THIN ``
4587+
4588+ A frame suitable for floating tooltip panels that need the DFHack signature.
4589+
45864590* ``FRAME_BOLD ``
45874591
45884592 A frame suitable for a non-draggable panel meant to capture the user's focus,
Original file line number Diff line number Diff line change 940940function FRAME_BOLD ()
941941 return make_frame (textures .tp_border_bold , true )
942942end
943+ function FRAME_THIN ()
944+ return make_frame (textures .tp_border_thin , false )
945+ end
943946function FRAME_INTERIOR ()
944947 local frame = make_frame (textures .tp_border_thin , false )
945948 frame .signature_pen = false
You can’t perform that action at this time.
0 commit comments