]> git.sur5r.net Git - i3/i3/commitdiff
Bugfix: Don’t always focus floating windows (fixes focus stealing with assignments...
authorMichael Stapelberg <michael@stapelberg.de>
Sat, 27 Aug 2011 11:02:44 +0000 (13:02 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 27 Aug 2011 11:02:44 +0000 (13:02 +0200)
src/floating.c
testcases/t/73-regress-focus-assign.t

index 8718ee01d53f590b8cc35b8dcde30b1fa87e24d3..343b4338006795854c9673ff27fa2a202a95c1f4 100644 (file)
@@ -17,7 +17,7 @@
 extern xcb_connection_t *conn;
 
 void floating_enable(Con *con, bool automatic) {
-    bool set_focus = true;
+    bool set_focus = (con == focused);
 
     if (con_is_floating(con)) {
         LOG("Container is already in floating mode, not doing anything.\n");
@@ -170,7 +170,6 @@ void floating_enable(Con *con, bool automatic) {
     render_con(nc, false);
     render_con(con, false);
 
-    // TODO: don’t influence focus handling when Con was not focused before.
     if (set_focus)
         con_focus(con);
 
index 7ad87103df515cd4f66809dd1cc338f829d84091..bab7c9ae7d992d64ccce1f6628a20f7276ba4335 100644 (file)
@@ -62,6 +62,28 @@ $window->map;
 sleep 0.25;
 
 
+ok(@{get_ws_content($tmp)} == 0, 'special window not on current workspace');
+ok(@{get_ws_content('targetws')} == 1, 'special window on targetws');
+ok(get_ws($tmp)->{focused}, 'current workspace still focused');
+
+#####################################################################
+# the same test, but with a floating window
+#####################################################################
+
+$window = $x->root->create_child(
+    class => WINDOW_CLASS_INPUT_OUTPUT,
+    rect => [ 0, 0, 30, 30 ],
+    background_color => '#0000ff',
+    window_type => $x->atom(name => '_NET_WM_WINDOW_TYPE_UTILITY'),
+);
+
+$window->_create;
+set_wm_class($window->id, 'special', 'special');
+$window->name('special window');
+$window->map;
+sleep 0.25;
+
+
 ok(@{get_ws_content($tmp)} == 0, 'special window not on current workspace');
 ok(@{get_ws_content('targetws')} == 1, 'special window on targetws');
 ok(get_ws($tmp)->{focused}, 'current workspace still focused');