You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sleep, 500 ; There seems to be an issue with the startup shortcut disappearing
234
251
update_sww_state(settings["sww"][3])
235
252
253
+
; Use a hotkey to enable/disable the software functionality
254
+
^+`::
255
+
settings["dis"][3] := !settings["dis"][3]
256
+
setTrayIcon()
257
+
save()
236
258
return
237
259
238
260
@@ -332,7 +354,7 @@ startup_shortcut_destroy() {
332
354
about() {
333
355
global ver
334
356
Gui, Settings:+OwnDialogs
335
-
MsgBox, 0x40, Welcome to ClickFix!, % "Thank you for using ClickFix!`n`nClickFix is always available from the taskbar tray area (if it's running). Whether ClickFix works for you or it doesn't, send me a message! I'm always looking for ways to improve the software: [email protected].`n`nThis software is at version " . ver . ".`nCopyright 2016 Jason Cemra - released under the GPLv3.`nSpecial thanks to the AutoHotKey crew, for making this program easy to write."
357
+
MsgBox, 0x40, Welcome to ClickFix!, % "Thank you for using ClickFix!`n`nClickFix is always available from the taskbar tray area (if it's running). Remember, ClickFix makes an unusable mouse into a bearable one until a replacement can be made. You may experience issues with the mouse not clicking at times - simply right click on the tray icon to restart the program.`n`nThis software is at version " . ver . ".`nCopyright 2017 Jason Cemra - released under the GPLv3.`nSpecial thanks to the AutoHotKey crew, for making this program easy to write."
336
358
}
337
359
338
360
restart() {
@@ -343,7 +365,7 @@ restart() {
343
365
344
366
345
367
; The real logic of the program - hotkeys triggered by mouse events
346
-
#If, settings["mb"][3]
368
+
#If, settings["mb"][3] and !settings["dis"][3]
347
369
MButton::
348
370
if (A_TickCount- last_m_down >= slidePressureScale(settings["mpr"][3]) &&A_TickCount- last_m_up >= slidePressureScale(settings["mpr"][3])) {
0 commit comments