summaryrefslogtreecommitdiff
path: root/src/gui/textpopup.cpp
AgeCommit message (Collapse)AuthorFilesLines
2024-03-28Fixed size and child positions for various popupsThorbjørn Lindeijer1-13/+13
Most prominently, fixes the tooltips on the window buttons being clipped due to their position being slightly outside of the clipping children area. And fixes NPC tooltips from having a lot of empty space below the NPC name. Also reduced the space between texts in the item tooltip to match the padding rather than being an entire empty line.
2024-03-06General code cleanupsThorbjørn Lindeijer1-9/+0
* Use final for all message handlers, Client, LocalPlayer, Being::getType, Being::setPosition and Being::setMap. (avoids some warnings about virtual dispatch in constructors) * Use auto in more places * Use emplace_back instead of push_back in some places * Use default member initializers * Less else after return * Removed superfluous .c_str() * Removed type aliases that are only used once * Removed more unused includes
2012-01-26Updated copyrights to 2012Thorbjørn Lindeijer1-1/+1
2010-08-09Replace remaining gcn::Label instances with Label instancesJared Adams1-2/+4
Reviewed-by: Chuck Miller
2010-03-31Removed the ability to assign custom skins to windows/popupsThorbjørn Lindeijer1-2/+0
Old settings are causing it to fall back on the wrong combination of files if old data is in the search path. Reviewed-by: Jared Adams
2010-03-14Add tooltips to hp, xp, mp bars.Andrei Karas1-0/+100
Signed-off-by: Jared Adams <jaxad0127@gmail.com>