summaryrefslogtreecommitdiffstats
path: root/src/tab.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tab.c')
-rw-r--r--src/tab.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tab.c b/src/tab.c
index 99facae..4dac405 100644
--- a/src/tab.c
+++ b/src/tab.c
@@ -34,9 +34,9 @@ update_positions(MqTab *node, gint step)
node->position += step;
update_tab_label(node);
if (node->next) {
- update_positions(node->next);
+ update_positions(node->next, step);
} else if (node->parent && node->parent->next) {
- update_positions(node->parent->next);
+ update_positions(node->parent->next, step);
}
}
}