diff options
author | rathnor <rathnor> | 2002-11-23 16:07:19 (GMT) |
---|---|---|
committer | rathnor <rathnor> | 2002-11-23 16:07:19 (GMT) |
commit | 3737a18dadaefa7ad07eff3e34edb757ee9a2170 (patch) | |
tree | 63533f01b6f90cc95454d423b1483086cc93ae34 /src/Window.hh | |
parent | bdbff9c5c2300fea1f167733300c582a84cf87b2 (diff) | |
download | fluxbox-3737a18dadaefa7ad07eff3e34edb757ee9a2170.zip fluxbox-3737a18dadaefa7ad07eff3e34edb757ee9a2170.tar.bz2 |
toggleDecor fix - rather than static, use an extra member of decorations
(means that odd number of toggles don't cause the next window toggled
to "ignore" it). I think this fixes bug [ 561602 ] Problem using
ToggleDecor in terminals.
Diffstat (limited to 'src/Window.hh')
-rw-r--r-- | src/Window.hh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Window.hh b/src/Window.hh index 06a901c..7bc5901 100644 --- a/src/Window.hh +++ b/src/Window.hh | |||
@@ -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.hh,v 1.36 2002/11/15 12:14:39 fluxgen Exp $ | 25 | // $Id: Window.hh,v 1.37 2002/11/23 16:07:19 rathnor Exp $ |
26 | 26 | ||
27 | #ifndef WINDOW_HH | 27 | #ifndef WINDOW_HH |
28 | #define WINDOW_HH | 28 | #define WINDOW_HH |
@@ -278,7 +278,7 @@ private: | |||
278 | 278 | ||
279 | struct _decorations { | 279 | struct _decorations { |
280 | bool titlebar, handle, border, iconify, | 280 | bool titlebar, handle, border, iconify, |
281 | maximize, close, menu, sticky, shade, tab; | 281 | maximize, close, menu, sticky, shade, tab, enabled; |
282 | } decorations; | 282 | } decorations; |
283 | 283 | ||
284 | struct _functions { | 284 | struct _functions { |