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,
|
||||
data->sendtodir.linear,
|
||||
data->sendtodir.final, data->sendtodir.cancel);
|
||||
|
||||
g_message("sendto %d", d);
|
||||
|
||||
client_set_desktop(c, d, TRUE);
|
||||
screen_set_desktop(d);
|
||||
}
|
||||
|
|
|
@ -90,8 +90,6 @@ static void fire_button(ObMouseAction a, ObFrameContext context,
|
|||
GSList *it;
|
||||
ObMouseBinding *b;
|
||||
|
||||
g_message("%d %d %d", context, state, button);
|
||||
|
||||
for (it = bound_contexts[context]; it != NULL; it = it->next) {
|
||||
b = it->data;
|
||||
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);
|
||||
}
|
||||
|
||||
g_message("acting");
|
||||
|
||||
act->func(&act->data);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -625,7 +625,6 @@ guint screen_cycle_desktop(ObDirection dir, gboolean wrap, gboolean linear,
|
|||
get_row_col(d, &r, &c);
|
||||
|
||||
if (lin) {
|
||||
g_message("linear %d", d);
|
||||
switch (dir) {
|
||||
case OB_DIRECTION_EAST:
|
||||
if (d < screen_num_desktops - 1)
|
||||
|
@ -643,7 +642,6 @@ guint screen_cycle_desktop(ObDirection dir, gboolean wrap, gboolean linear,
|
|||
assert(0);
|
||||
return screen_desktop;
|
||||
}
|
||||
g_message("linear %d done", d);
|
||||
} else {
|
||||
switch (dir) {
|
||||
case OB_DIRECTION_EAST:
|
||||
|
|
Loading…
Reference in a new issue