move
This commit is contained in:
parent
298b753ccd
commit
a0884da532
4
surf.c
4
surf.c
|
@ -402,7 +402,9 @@ void tab_bar_click(GtkWidget *w, GdkEvent *e, Client *c) {
|
||||||
}
|
}
|
||||||
|
|
||||||
void switch_tab(Client *c, const Arg *a) {
|
void switch_tab(Client *c, const Arg *a) {
|
||||||
g_print("switch");
|
g_print("switch %i", a->i);
|
||||||
|
c->selected_tab = MIN(MAX(c->selected_tab + a->i, 0), g_list_length(c->tabs) - 1);
|
||||||
|
update_tab_bar(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
void move_tab(Client *c, const Arg *a) {
|
void move_tab(Client *c, const Arg *a) {
|
||||||
|
|
Loading…
Reference in a new issue