128 |
128 |
129 def __setInterval(self): |
129 def __setInterval(self): |
130 """ |
130 """ |
131 Private slot to change the status check interval. |
131 Private slot to change the status check interval. |
132 """ |
132 """ |
133 interval, ok = QInputDialog.getInt( |
133 interval, ok = QInputDialog.getInt( |
134 None, |
134 None, |
135 self.tr("VCS Status Monitor"), |
135 self.tr("VCS Status Monitor"), |
136 self.tr("Enter monitor interval [s]"), |
136 self.tr("Enter monitor interval [s]"), |
137 self.project.getStatusMonitorInterval(), |
137 self.project.getStatusMonitorInterval(), |
138 0, 3600, 1) |
138 0, 3600, 1) |