diff --git a/AUTHORS b/AUTHORS index 70938382c..791a7bddd 100644 --- a/AUTHORS +++ b/AUTHORS @@ -47,3 +47,4 @@ Samuel Mendes Michael Stapelberg Stefan Sperling Nicolas Beaumont +David H. Bronke diff --git a/src/modules/tiling/e_mod_tiling.c b/src/modules/tiling/e_mod_tiling.c index bfcc1b23f..4c671f7d6 100644 --- a/src/modules/tiling/e_mod_tiling.c +++ b/src/modules/tiling/e_mod_tiling.c @@ -2202,7 +2202,7 @@ _move_left_cols(E_Border *bd, Eina_Bool check_moving_anims) for (i = 0; i < nb_stacks; i++) { int width; - width = w / (nb_stacks - 1 - i); + width = w / (nb_stacks - i); _set_stack_geometry(i, x, width); @@ -2534,7 +2534,7 @@ _move_up_rows(E_Border *bd, Eina_Bool check_moving_anims) for (i = 0; i < nb_stacks; i++) { int height; - height = h / (nb_stacks - 1 - i); + height = h / (nb_stacks - i); _set_stack_geometry(i, y, height);