Skip to content

Commit 5826005

Browse files
committed
added monitorClipboard to settings, closes #101
1 parent 31d8828 commit 5826005

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lib/Settings GUI Plug.ahk

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -303,6 +303,8 @@ load_Settings(all=false){
303303
; v12+
304304
tempVar := ini_read("Advanced", "WinForPasteMode")
305305
manageWinPasteMode(tempVar ? 1 : 0, 0)
306+
; v12.5
307+
ini_monitorClipboard := ini_read("Main", "monitorClipboard")
306308
}
307309

308310
}
@@ -447,6 +449,7 @@ save_Default(full=1){
447449
ini_write("Advanced", "WinForPasteMode", 0)
448450
; v12.3+
449451
ini_write("Main", "winClipjump", 0)
452+
ini_write("Main", "monitorClipboard", 1)
450453

451454
; DELETE KEYS removed v10.7.2.6
452455
Ini_delete("Advanced", "Start_with_formatting")
@@ -511,6 +514,7 @@ validate_Settings()
511514
ini_startSearch := ini_startSearch ? 1 : 0
512515
ini_revFormat2def := ini_revFormat2def ? 1 : 0
513516
ini_winClipjump := (ini_winClipjump==1) ? 1 : 0
517+
ini_monitorClipboard := (ini_monitorClipboard==0) ? 0 : 1
514518

515519
if !ini_DaysToStore
516520
{

0 commit comments

Comments
 (0)