I noticed the dedicate frame functionality to toggle promiscuous
and chaste modes was broken.
Attached is a one-line fix.

-- 
m...@sdf.org
SDF Public Access UNIX System - http://sdf.org
diff --git a/src/window.c b/src/window.c
index dd65a93..12f9f96 100644
--- a/src/window.c
+++ b/src/window.c
@@ -410,7 +410,7 @@ find_frame_non_dedicated(rp_screen *current_screen)
 
   list_for_each_entry (screen, &rp_screens, node)
     {
-      if (current_screen == screen)
+      if (current_screen != screen)
         continue;
 
       list_for_each_entry (cur, &screen->frames, node)
_______________________________________________
Ratpoison-devel mailing list
Ratpoison-devel@nongnu.org
https://lists.nongnu.org/mailman/listinfo/ratpoison-devel

Reply via email to