# swaps the functions of the alt-rmb and alt-lmb (the popup menu and
# resizing the window). Alt + right mouse button now resizes the window
# like in many other window managers. It might break lots of other things
# (although it hasn't yet over here)
# author arj< a t >bz2.nl
--- src/display.old.c   2007-03-02 23:09:58.000000000 +0100
+++ src/display.c       2007-03-02 23:13:19.000000000 +0100
@@ -1691,7 +1691,7 @@
               if (!unmodified)
                 begin_move = TRUE;
             }
-          else if (!unmodified && event->xbutton.button == 2)
+          else if (!unmodified && event->xbutton.button == 3)
             {
               if (window->has_resize_func)
                 {
@@ -1740,7 +1740,7 @@
                                                 event->xbutton.y_root);
                 }
             }
-          else if (event->xbutton.button == 3)
+          else if (event->xbutton.button == 2)
             {
               if (meta_prefs_get_raise_on_click ())
                 meta_window_raise (window);


