remove debug printings
This commit is contained in:
parent
a414fe42d4
commit
8529aab619
3 changed files with 0 additions and 9 deletions
|
@ -918,9 +918,6 @@ void action_send_to_desktop_dir(union ActionData *data)
|
||||||
d = screen_cycle_desktop(data->sendtodir.dir, data->sendtodir.wrap,
|
d = screen_cycle_desktop(data->sendtodir.dir, data->sendtodir.wrap,
|
||||||
data->sendtodir.linear,
|
data->sendtodir.linear,
|
||||||
data->sendtodir.final, data->sendtodir.cancel);
|
data->sendtodir.final, data->sendtodir.cancel);
|
||||||
|
|
||||||
g_message("sendto %d", d);
|
|
||||||
|
|
||||||
client_set_desktop(c, d, TRUE);
|
client_set_desktop(c, d, TRUE);
|
||||||
screen_set_desktop(d);
|
screen_set_desktop(d);
|
||||||
}
|
}
|
||||||
|
|
|
@ -90,8 +90,6 @@ static void fire_button(ObMouseAction a, ObFrameContext context,
|
||||||
GSList *it;
|
GSList *it;
|
||||||
ObMouseBinding *b;
|
ObMouseBinding *b;
|
||||||
|
|
||||||
g_message("%d %d %d", context, state, button);
|
|
||||||
|
|
||||||
for (it = bound_contexts[context]; it != NULL; it = it->next) {
|
for (it = bound_contexts[context]; it != NULL; it = it->next) {
|
||||||
b = it->data;
|
b = it->data;
|
||||||
if (b->state == state && b->button == button)
|
if (b->state == state && b->button == button)
|
||||||
|
@ -128,8 +126,6 @@ static void fire_button(ObMouseAction a, ObFrameContext context,
|
||||||
keyboard_interactive_grab(state, c, context, act);
|
keyboard_interactive_grab(state, c, context, act);
|
||||||
}
|
}
|
||||||
|
|
||||||
g_message("acting");
|
|
||||||
|
|
||||||
act->func(&act->data);
|
act->func(&act->data);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -625,7 +625,6 @@ guint screen_cycle_desktop(ObDirection dir, gboolean wrap, gboolean linear,
|
||||||
get_row_col(d, &r, &c);
|
get_row_col(d, &r, &c);
|
||||||
|
|
||||||
if (lin) {
|
if (lin) {
|
||||||
g_message("linear %d", d);
|
|
||||||
switch (dir) {
|
switch (dir) {
|
||||||
case OB_DIRECTION_EAST:
|
case OB_DIRECTION_EAST:
|
||||||
if (d < screen_num_desktops - 1)
|
if (d < screen_num_desktops - 1)
|
||||||
|
@ -643,7 +642,6 @@ guint screen_cycle_desktop(ObDirection dir, gboolean wrap, gboolean linear,
|
||||||
assert(0);
|
assert(0);
|
||||||
return screen_desktop;
|
return screen_desktop;
|
||||||
}
|
}
|
||||||
g_message("linear %d done", d);
|
|
||||||
} else {
|
} else {
|
||||||
switch (dir) {
|
switch (dir) {
|
||||||
case OB_DIRECTION_EAST:
|
case OB_DIRECTION_EAST:
|
||||||
|
|
Loading…
Reference in a new issue