From: Dana Jansens Date: Fri, 10 Oct 2003 05:56:12 +0000 (+0000) Subject: dont leave the focus indicator hanging around when dialogs are disabled X-Git-Url: https://git.dogcows.com/gitweb?a=commitdiff_plain;h=423d70b41812f01c13b46c7f5a28dc727b337073;p=chaz%2Fopenbox dont leave the focus indicator hanging around when dialogs are disabled --- diff --git a/openbox/focus.c b/openbox/focus.c index 59e07f5e..de346ead 100644 --- a/openbox/focus.c +++ b/openbox/focus.c @@ -526,9 +526,8 @@ void focus_cycle(gboolean forward, gboolean linear, if (cancel) { focus_cycle_target = NULL; goto done_cycle; - } else if (done && dialog) { + } else if (done) goto done_cycle; - } if (!focus_order[screen_desktop]) goto done_cycle; @@ -588,9 +587,8 @@ void focus_directional_cycle(ObDirection dir, if (cancel) { focus_cycle_target = NULL; goto done_cycle; - } else if (done && dialog) { + } else if (done) goto done_cycle; - } if (!focus_order[screen_desktop]) goto done_cycle;