Skip to content

Commit

Permalink
intellihide: treat fullscreen windows as maximized
Browse files Browse the repository at this point in the history
  • Loading branch information
JimmyJichi authored Mar 28, 2024
1 parent 936b866 commit 792943b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion intellihide.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@ export class Intellihide {

case IntellihideMode.MAXIMIZED_WINDOWS:
// Skip unmaximized windows
if (!metaWin.maximized_vertically && !metaWin.maximized_horizontally)
if (!metaWin.maximized_vertically && !metaWin.maximized_horizontally && !metaWin.fullscreen)
return false;
break;

Expand Down

0 comments on commit 792943b

Please sign in to comment.