diff options
Diffstat (limited to 'shell/e-shell-switcher.c')
-rw-r--r-- | shell/e-shell-switcher.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/shell/e-shell-switcher.c b/shell/e-shell-switcher.c index e1ed8606e5..ec4f23ce53 100644 --- a/shell/e-shell-switcher.c +++ b/shell/e-shell-switcher.c @@ -127,7 +127,9 @@ shell_switcher_layout_actions (EShellSwitcher *switcher) y -= max_height; len = g_list_length (rows[i]); if (!icons_only) - extra_width = (allocation->width - (len * max_width ) - (len * H_PADDING)) / len; + extra_width = + (allocation->width - (len * max_width) - + (len * H_PADDING)) / len; else extra_width = 0; for (p = rows [i]; p != NULL; p = p->next) { |