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 and 3v1n0 committed Apr 17, 2024
1 parent c398b93 commit f01f978
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 f01f978

Please sign in to comment.