]> git.sur5r.net Git - i3/i3/commitdiff
tests: explicitly set input hint
authorMichael Stapelberg <michael@stapelberg.de>
Thu, 19 Jun 2014 10:17:05 +0000 (12:17 +0200)
committerMichael Stapelberg <michael@stapelberg.de>
Thu, 19 Jun 2014 10:17:39 +0000 (12:17 +0200)
Since i3 honors the “Globally Active Input” focus model, we need to
explicitly state that we are not using that in our testcases :).

This requires X11::XCB from git to work (commit
71b25dcaafc509e710b8fd7de20c97ac3549fc39).

testcases/lib/i3test.pm

index a6b982bafd8e18b0b281ccc58ab104236950a1a5..212e78fd64f79b3aa8f58b296465860379f5bd74 100644 (file)
@@ -337,6 +337,7 @@ sub open_window {
     $args{name} //= 'Window ' . counter_window();
 
     my $window = $x->root->create_child(%args);
+    $window->add_hint('input');
 
     if ($before_map) {
         # TODO: investigate why _create is not needed