Doesn't work well with WinMaximize: maximize TC, then click on another window (application) on the taskbar -> often we can't go back to TC.NotNull wrote: 2020-11-29, 20:34 UTC Method 2: AHK
- Replace WIN+N with your actual keyboard shortcut (I have a different keyboard layout
- Replace WinMaximize with WinActivate to restore the previous sindow size
Code: Select all
#SingleInstance FORCE #n:: { IfWinActive ahk_class TTOTAL_CMD { WinMinimize ahk_class TTOTAL_CMD return } IfWinNotActive ahk_class TTOTAL_CMD { WinMaximize ahk_class TTOTAL_CMD return } } return
Seems to work well with WinActivate instead
