-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Description
I notice that when PowerToys is running, and I use GreenShot to take a screenshot, it only allows me to screenshot one of the "zones" on my screen. I have a 3 monitor setup. It makes a small window of the left monitor show up in the left side of my middle monitor. I've attached a photo of my monitor when the bug happens.
This is super annoying, because in order to use GreenShot I would need to close PowerToys, then take the screenshot, then open PowerToys again.
I made a workaround in AutoHotKey, which closes PowerToys, sends the print screen command to GreenShot and allows me to select a region, then 5 seconds later opens PowerToys again.
The workaround AutoHotKey Script:
PrintScreen::
Run, PowerShell.exe -noexit -Command "Stop-Process -Name "PowerToys" -Force",, hide
Send {PrintScreen}
Sleep, 5000
Run, C:\Program Files\PowerToys\PowerToys.exe
Return
Hope this bug report, and workaround is helpful to someone!!
