all repos — fluxbox @ 173682f8dec2f2255b89c6412c634dcbe60a6b99

custom fork of the fluxbox windowmanager

The unfocused/pressed pixmaps for the 'stick' button were ignored.

This fixes a bug in commit 1f01d84c080d607a91eb417efcaf5e500b5f1d7e (split
WinButtonTheme into multiple themes), where every other theme except for
m_stick_pm was changed.
Jim Ramsay i.am@jimramsay.com
commit

173682f8dec2f2255b89c6412c634dcbe60a6b99

parent

1b1262e01b96c20daea1d9ca0b306ee6941e727a

1 files changed, 2 insertions(+), 1 deletions(-)

jump to
M src/WinButtonTheme.ccsrc/WinButtonTheme.cc

@@ -48,7 +48,8 @@ m_title_pm(*this, "window.title" + (extra.empty() ? std::string(".focus")

: extra) + ".pixmap", "Window.Title" + (extra.empty() ? std::string(".Focus") : altextra) + ".Pixmap"), - m_stick_pm(*this, "window.stick.pixmap", "Window.Stick.Pixmap"), + m_stick_pm(*this, "window.stick" + extra + ".pixmap", + "Window.Stick" + altextra + ".Pixmap"), m_stuck_pm(*this, "window.stuck" + extra + ".pixmap", "Window.Stuck" + altextra + ".Pixmap"), m_frame_theme(frame_theme) {