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
1 files changed,
2 insertions(+),
1 deletions(-)
jump to
M
src/WinButtonTheme.cc
→
src/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) {