]> Dogcows Code - chaz/openbox/commitdiff
make window menu behavior consistant. ignore !button1.
authorDana Jansens <danakj@orodu.net>
Mon, 27 May 2002 03:55:18 +0000 (03:55 +0000)
committerDana Jansens <danakj@orodu.net>
Mon, 27 May 2002 03:55:18 +0000 (03:55 +0000)
src/Windowmenu.cc

index f274a047e3cc38e121503bd305154b48d29dac3a..7de61dbdd2bc3a59e91a8b508a03684a10083dc2 100644 (file)
@@ -90,6 +90,9 @@ void Windowmenu::show(void) {
 
 
 void Windowmenu::itemSelected(int button, unsigned int index) {
+  if (button != 1)
+    return;
+  
   BasemenuItem *item = find(index);
 
   hide();
@@ -103,7 +106,7 @@ void Windowmenu::itemSelected(int button, unsigned int index) {
     break;
 
   case BScreen::WindowMaximize:
-    window->maximize(button);
+    window->maximize(1);        // full maximize
     break;
 
   case BScreen::WindowClose:
This page took 0.02673 seconds and 4 git commands to generate.