fullscreenizer icon indicating copy to clipboard operation
fullscreenizer copied to clipboard

Add an "Undo" button - window got stuck "Fullscreenized"

Open seanmcnally98 opened this issue 2 years ago • 0 comments

Had a piece of software I used fullscreenizer on which made it totally stuck in "fullscreenized" mode. Even a reinstall of that software didn't fix it. Would be great if there was a way to set it back to normal. In the meantime, for anyone googling how to undo a fullscreenize of a window, I used this autohotkey script:

`::
tog := (!tog)
If (tog)
	WinSet, Style, -0xC10000, A
Else
	WinSet, Style, +0xC10000, A
return

The tilde ` key will set any active window back to nornal.

seanmcnally98 avatar Aug 15 '22 19:08 seanmcnally98