]> Dogcows Code - chaz/openbox/commitdiff
better var naming
authorDana Jansens <danakj@orodu.net>
Fri, 28 Mar 2003 00:17:10 +0000 (00:17 +0000)
committerDana Jansens <danakj@orodu.net>
Fri, 28 Mar 2003 00:17:10 +0000 (00:17 +0000)
openbox/focus.c

index 127a3399e740b62466e536baf03387a6d6776e94..4df6662cccc4e95302712acfed3b46661b821c72 100644 (file)
@@ -118,16 +118,16 @@ void focus_fallback(gboolean switching_desks)
 {
     ConfigValue focus_follow;
     GList *it;
-    gboolean fallback = TRUE;
+    gboolean under = TRUE;
 
     if (!switching_desks) {
         if (!config_get("focusFollowsMouse", Config_Bool, &focus_follow))
             g_assert_not_reached();
         if (focus_follow.bool)
-            fallback = !focus_under_pointer();
+            under = focus_under_pointer();
     }
 
-    if (fallback) {
+    if (!under) {
         for (it = focus_order[screen_desktop]; it != NULL; it = it->next)
             if (it->data != focus_client && client_normal(it->data)) {
                 g_message("fallback trying %lx", ((Client*)it->data)->window);
This page took 0.022283 seconds and 4 git commands to generate.