Skip to content

Commit

Permalink
Tabs broken when no focus window
Browse files Browse the repository at this point in the history
  • Loading branch information
jmmaranan committed Nov 6, 2022
1 parent eadbf99 commit 52f4fc9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion window.js
Original file line number Diff line number Diff line change
Expand Up @@ -1659,7 +1659,7 @@ var WindowManager = GObject.registerClass(
let tiled = this.tree.getTiledChildren(con.childNodes);
if (con.decoration && tiled.length > 0) {
con.decoration.show();
if (global.window_group.contains(con.decoration)) {
if (global.window_group.contains(con.decoration) && this.focusMetaWindow) {
global.window_group.remove_child(con.decoration);
// Show it below the focused window
global.window_group.insert_child_below(
Expand Down

0 comments on commit 52f4fc9

Please sign in to comment.