diff options
| author | Dana Jansens <danakj@orodu.net> | 2007-05-10 16:27:10 +0000 |
|---|---|---|
| committer | Dana Jansens <danakj@orodu.net> | 2007-05-10 16:27:10 +0000 |
| commit | 2864a761c7fb4fd0cd04af22ba02d4b83a970a96 (patch) | |
| tree | d80297f7269c3e9a439c4d506089bd9f763a3c65 | |
| parent | 5a96dee7565a1bdbf3088b2eaac276a932742cf6 (diff) | |
make sure math is done in the right order
| -rw-r--r-- | openbox/screen.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/openbox/screen.c b/openbox/screen.c index 9b6a977e..dddb788f 100644 --- a/openbox/screen.c +++ b/openbox/screen.c @@ -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); |
