From: Dana Jansens Date: Wed, 9 Apr 2003 17:40:14 +0000 (+0000) Subject: dont show the focus popup when theres no target client X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=a6130b8407506d546c8343aae209755d926e4eb3;p=chaz%2Fopenbox dont show the focus popup when theres no target client --- 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); }