From a6130b8407506d546c8343aae209755d926e4eb3 Mon Sep 17 00:00:00 2001 From: Dana Jansens Date: Wed, 9 Apr 2003 17:40:14 +0000 Subject: [PATCH] dont show the focus popup when theres no target client --- openbox/action.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbox/action.c b/openbox/action.c index 50b1e545..a9c7737a 100644 --- a/openbox/action.c +++ b/openbox/action.c @@ -750,6 +750,6 @@ void action_cycle_windows(union ActionData *data) c = focus_cycle(data->cycle.forward, data->cycle.linear, data->cycle.final, data->cycle.cancel); - popup_cycle(c, !c && (data->cycle.final||data->cycle.cancel)); + popup_cycle(c, !c || data->cycle.final || data->cycle.cancel); } -- 2.44.0