We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 37a8220 commit ec11834Copy full SHA for ec11834
main.py
@@ -343,9 +343,9 @@ def on_clicked_row(self, item):
343
def on_clicked_button_refresh(self):
344
self.pushButtonRefresh.setEnabled(False)
345
346
- timer = QtCore.QTimer()
347
- timer.timeout.connect(lambda: self.pushButtonRefresh.setEnabled(True))
348
- timer.start(30000)
+ self.timer = QtCore.QTimer()
+ self.timer.timeout.connect(lambda: self.pushButtonRefresh.setEnabled(True))
+ self.timer.start(30000)
349
350
self.tableWidget.setRowCount(0) # Remove all rows
351
0 commit comments