e:tiling: Corrected off-by-one error that was causing a SIGFPE when moving the last window in a stack to the left.

SVN revision: 81677
devs/asdfuser/comp-sounds
Boris Faure 11 years ago
parent 773454898d
commit 69165855cd
  1. 1
      AUTHORS
  2. 4
      src/modules/tiling/e_mod_tiling.c

@ -47,3 +47,4 @@ Samuel Mendes <heka.lok@gmail.com>
Michael Stapelberg <michael+e17@stapelberg.de>
Stefan Sperling <stsp@openbsd.org>
Nicolas Beaumont <nicolas.beaumont@gmail.com>
David H. Bronke <whitelynx@gmail.com>

@ -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);

Loading…
Cancel
Save