diff options
-rw-r--r-- | src/Window.cc | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/Window.cc b/src/Window.cc index cf88219..e54a1de 100644 --- a/src/Window.cc +++ b/src/Window.cc | |||
@@ -22,7 +22,7 @@ | |||
22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | 22 | // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
23 | // DEALINGS IN THE SOFTWARE. | 23 | // DEALINGS IN THE SOFTWARE. |
24 | 24 | ||
25 | // $Id: Window.cc,v 1.106 2002/12/01 13:42:03 rathnor Exp $ | 25 | // $Id: Window.cc,v 1.107 2002/12/09 14:17:50 rathnor Exp $ |
26 | 26 | ||
27 | #include "Window.hh" | 27 | #include "Window.hh" |
28 | 28 | ||
@@ -71,7 +71,7 @@ FluxboxWindow::FluxboxWindow(Window w, BScreen *s): | |||
71 | display(0), | 71 | display(0), |
72 | lastButtonPressTime(0), | 72 | lastButtonPressTime(0), |
73 | m_windowmenu(0), | 73 | m_windowmenu(0), |
74 | m_layer(LAYER_NORMAL), | 74 | m_layer(LAYER_NORMAL), old_decoration(DECOR_NORMAL), |
75 | tab(0) { | 75 | tab(0) { |
76 | 76 | ||
77 | lastFocusTime.tv_sec = lastFocusTime.tv_usec = 0; | 77 | lastFocusTime.tv_sec = lastFocusTime.tv_usec = 0; |
@@ -3177,7 +3177,11 @@ void FluxboxWindow::toggleDecoration() { | |||
3177 | setDecoration(DECOR_NONE); | 3177 | setDecoration(DECOR_NONE); |
3178 | decorations.enabled = false; | 3178 | decorations.enabled = false; |
3179 | } else { //revert back to old decoration | 3179 | } else { //revert back to old decoration |
3180 | setDecoration(old_decoration); | 3180 | if (old_decoration == DECOR_NONE) { // make sure something happens |
3181 | setDecoration(DECOR_NORMAL); | ||
3182 | } else { | ||
3183 | setDecoration(old_decoration); | ||
3184 | } | ||
3181 | decorations.enabled = true; | 3185 | decorations.enabled = true; |
3182 | } | 3186 | } |
3183 | } | 3187 | } |