diff options
author | markt <markt> | 2007-04-08 18:01:01 (GMT) |
---|---|---|
committer | markt <markt> | 2007-04-08 18:01:01 (GMT) |
commit | 3b9351be77b168c54332ff51524e11090c1dd2bc (patch) | |
tree | 9c49979e3fcee96abbdbe86e75ef81c7625e68ea /src/FbTk/Button.cc | |
parent | 52a96c4e9dc21b53ccfa753e922e67981bca4d36 (diff) | |
download | fluxbox-3b9351be77b168c54332ff51524e11090c1dd2bc.zip fluxbox-3b9351be77b168c54332ff51524e11090c1dd2bc.tar.bz2 |
menu from workspacename tool wasn't focused, and fixed unpressed button rendering
Diffstat (limited to 'src/FbTk/Button.cc')
-rw-r--r-- | src/FbTk/Button.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/FbTk/Button.cc b/src/FbTk/Button.cc index f13adf3..a9b27b2 100644 --- a/src/FbTk/Button.cc +++ b/src/FbTk/Button.cc | |||
@@ -129,11 +129,11 @@ void Button::buttonReleaseEvent(XButtonEvent &event) { | |||
129 | if (!been_deleted) { | 129 | if (!been_deleted) { |
130 | mark_if_deleted = 0; | 130 | mark_if_deleted = 0; |
131 | if (m_background_pm) { | 131 | if (m_background_pm) { |
132 | if (m_pressed_pm != 0) { | 132 | if (m_pressed_pm != 0 || m_pressed_color.isAllocated()) { |
133 | update = true; | 133 | update = true; |
134 | setBackgroundPixmap(m_background_pm); | 134 | setBackgroundPixmap(m_background_pm); |
135 | } | 135 | } |
136 | } else if (m_pressed_color.isAllocated()) { | 136 | } else if (m_pressed_pm != 0 || m_pressed_color.isAllocated()) { |
137 | update = true; | 137 | update = true; |
138 | setBackgroundColor(m_background_color); | 138 | setBackgroundColor(m_background_color); |
139 | } | 139 | } |