Skip to content

Commit

Permalink
cinnamon-maximus@fmete: Undecorate window if it's fully maximized (#482)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkuz authored Aug 26, 2023
1 parent 2740c51 commit 8172ed0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ function onSizeChange(shellwm, actor, change) {
if (change === Meta.SizeChange.UNMAXIMIZE) {
onUnmaximize(shellwm, actor);
}
if (!!Meta.SizeChange.TILE && change === Meta.SizeChange.TILE && settings.undecorateTile == true) {
if (!!Meta.SizeChange.TILE && change === Meta.SizeChange.TILE) {
onMaximize(shellwm, actor);
}
}
Expand Down

0 comments on commit 8172ed0

Please sign in to comment.