From 605ac63691e50c8b9acca2a1e134489c008ea100 Mon Sep 17 00:00:00 2001 From: airclay Date: Sat, 4 Sep 2021 21:19:33 -0500 Subject: [PATCH] WIP --- systrayUpdater | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/systrayUpdater b/systrayUpdater index b07b8c9..4627347 100755 --- a/systrayUpdater +++ b/systrayUpdater @@ -78,7 +78,8 @@ menu.addAction(option1) timer = QTimer() timer.timeout.connect(newText) # Download pkg's to cache on timeout -timer.timeout.connect(cacheUpdates) +if cache == True: + timer.timeout.connect(cacheUpdates) timer.start(wait) # To quit the app