]> Dogcows Code - chaz/openbox/commitdiff
make sure math is done in the right order
authorDana Jansens <danakj@orodu.net>
Thu, 10 May 2007 16:27:10 +0000 (16:27 +0000)
committerDana Jansens <danakj@orodu.net>
Thu, 10 May 2007 16:27:10 +0000 (16:27 +0000)
openbox/screen.c

index 9b6a977e11f2086f9c4a64008d91af73f0df4ed0..dddb788f1352d469a1146dc62c9e361b8b5f452a 100644 (file)
@@ -642,10 +642,10 @@ void screen_desktop_popup(guint d, gboolean show)
         pager_popup_position(desktop_cycle_popup, CenterGravity,
                              a->x + a->width / 2, a->y + a->height / 2);
         pager_popup_icon_size_multiplier(desktop_cycle_popup,
-                                         screen_desktop_layout.columns /
-                                         screen_desktop_layout.rows / 2,
-                                         screen_desktop_layout.rows/
-                                         screen_desktop_layout.columns / 2);
+                                         (screen_desktop_layout.columns /
+                                          screen_desktop_layout.rows) / 2,
+                                         (screen_desktop_layout.rows/
+                                          screen_desktop_layout.columns) / 2);
         pager_popup_max_width(desktop_cycle_popup,
                               MAX(a->width/3, POPUP_WIDTH));
         pager_popup_show(desktop_cycle_popup, screen_desktop_names[d], d);
This page took 0.025034 seconds and 4 git commands to generate.