Skip to content

Commit

Permalink
window-list: Remove indicators for minimized and tiled windows (#12227)
Browse files Browse the repository at this point in the history
  • Loading branch information
j9d committed Jun 14, 2024
1 parent 0974bc9 commit f397f4f
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -524,12 +524,6 @@ class AppMenuButton {
if (this._tooltip && this._applet.windowHover != "nothing" && this._tooltip.set_text)
this._tooltip.set_text(title);

if (this.metaWindow.minimized) {
title = "["+ title +"]";
} else if (this.metaWindow.tile_mode != Meta.TileMode.NONE && this.metaWindow.tile_mode != Meta.TileMode.MAXIMIZED) {
title = "|"+ title;
}

this._label.set_text(title);
}

Expand Down

0 comments on commit f397f4f

Please sign in to comment.