File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 11import threading
22import time
33from services .thundersynchandler import ThunderSyncHandler
4+ from services .permanent_sync_handler import PermanentSyncHandler
45
56
67class SettingsIntervalHandler :
@@ -22,7 +23,7 @@ def start(self):
2223 status = "offline"
2324 if ThunderSyncHandler .STATUS == 1 :
2425 status = "waiting for changes..."
25- if ThunderSyncHandler .STATUS == 2 :
26+ if ThunderSyncHandler .STATUS == 2 or PermanentSyncHandler . STATUS == 2 :
2627 status = "syncing..."
2728
2829 self .statusBadge .setText ("Status: " + status )
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ def createAboutArea(self):
146146
147147 aboutLine1 = QtWidgets .QLabel ("Thunderklaud Desktop-Client" )
148148 self .aboutBoxLayout .addWidget (aboutLine1 )
149- aboutLine2 = QtWidgets .QLabel ("Version 1.1.5 " )
149+ aboutLine2 = QtWidgets .QLabel ("Version 1.2.0 " )
150150 self .aboutBoxLayout .addWidget (aboutLine2 )
151151
152152 aboutLine3 = QtWidgets .QLabel (
@@ -186,7 +186,7 @@ def createChangeMode(self):
186186 rowLayout .addWidget (syncMode )
187187 rowLayout .addWidget (self .comboBox )
188188 self .settingsBoxLayout .addLayout (rowLayout )
189-
189+
190190 def getSyncMode (self ):
191191 return self .comboBox .currentText ()
192192
You can’t perform that action at this time.
0 commit comments