Solved Is it possible to disable double-click fullscreen on Youtube?
-
I sometimes click really fast to pause/play the video it puts it in fullscreen mode. I want to disable that if possible. Across all websites if possible.
Yes I know keyboard shortcuts exist, so you don't need to comment about that :).
-
@sergic25 You could perhaps use AutoHotKey or an extension to accomplish this. Don't think there is a native way in Vivaldi.
Didn't do to much testing, but this AHK script seems to work (I added a wrapper to make it only act when Vivaldi is the active window):
Note: It disables all double clicking in Vivaldi. You can try lowering the
500
part to300
or lower if you want only speedy double clicks to be blocked. Or you might need to raise it if your double clicks still register.#IfWinActive ahk_exe vivaldi.exe Timer := A_TickCount Return $LButton:: If ( A_TickCount-Timer < 500 ) ; change this as desired Return Timer := A_TickCount Click down Return $LButton Up::Click up #IfWinActive
-
@nomadic Wow, thankyou. That worked.
I set it to 300, it's actually nice because if I double-click really fast I can still make it full screen but it doesn't randomly fuck up my videos when I'm trying to pause and play casually. I compiled it as an .exe and made my Vivaldi shortcuts run it along side Vivaldi.
-
Ppafflick moved this topic from Vivaldi for Windows on
-
Ppafflick marked this topic as a question on
-
Ppafflick has marked this topic as solved on
-
@sergic25 Adding this in case you didn't know - on Windows, you can adjust the double click speed in Mouse settings. It doesn't require running any 3rd-party apps (but will affect all programs running on your computer).