From eba4484970148680a11159852f8568bb907c5b5f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?John=20Ankarstr=C3=B6m?= Date: Sun, 11 Apr 2021 15:27:37 +0200 Subject: Always show Restart button --- drm.ahk | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/drm.ahk b/drm.ahk index 6800bc6..de4bf6c 100644 --- a/drm.ahk +++ b/drm.ahk @@ -50,6 +50,7 @@ for k, res in Resolutions Menu, Tray, Add, %res%, ButtonResolution Menu, Tray, Add Menu, Tray, Add, &Configure..., ButtonConfigure +Menu, Tray, Add, &Restart, ButtonRestart Menu, Tray, Add, E&xit, ButtonExit AddCheckmark() OnMessage(0x404, "NotifyIcon") @@ -62,24 +63,6 @@ ButtonRestart: Reload return -; Handle tray opening - -NotifyIcon(wParam, lParam) -{ - if (lParam = 0x205) ; WM_RBUTTONUP - { - Menu, Tray, UseErrorLevel - Menu, Tray, Delete, &Restart - Menu, Tray, Delete, E&xit - Menu, Tray, UseErrorLevel, Off - if (GetKeyState("Shift") = 1) - Menu, Tray, Add, &Restart, ButtonRestart - else - Menu, Tray, Add, E&xit, ButtonExit - Menu, Tray, Show - return 1 - } -} ; Open configuration -- cgit v1.2.3