mirror of
https://github.com/labwc/labwc.git
synced 2026-04-06 07:15:40 -04:00
Print (debug) what action is being ignored on alt+tab
This commit is contained in:
parent
c8581b3fed
commit
9bf9f58c61
1 changed files with 3 additions and 3 deletions
|
|
@ -1525,6 +1525,9 @@ actions_run(struct view *activator, struct server *server,
|
|||
|
||||
struct action *action;
|
||||
wl_list_for_each(action, actions, link) {
|
||||
wlr_log(WLR_DEBUG, "Handling action %u: %s", action->type,
|
||||
action_names[action->type]);
|
||||
|
||||
if (server->input_mode == LAB_INPUT_STATE_WINDOW_SWITCHER
|
||||
&& action->type != ACTION_TYPE_NEXT_WINDOW
|
||||
&& action->type != ACTION_TYPE_PREVIOUS_WINDOW) {
|
||||
|
|
@ -1533,9 +1536,6 @@ actions_run(struct view *activator, struct server *server,
|
|||
continue;
|
||||
}
|
||||
|
||||
wlr_log(WLR_DEBUG, "Handling action %u: %s", action->type,
|
||||
action_names[action->type]);
|
||||
|
||||
/*
|
||||
* Refetch view because it may have been changed due to the
|
||||
* previous action
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue