--- a/Project/Project.py Wed Oct 03 14:31:58 2018 +0200 +++ b/Project/Project.py Wed Oct 03 17:33:40 2018 +0200 @@ -95,6 +95,8 @@ repopulated @signal vcsStatusMonitorStatus(str, str) emitted to signal the status of the monitoring thread (ok, nok, op, off) and a status message + @signal vcsStatusMonitorInfo(str) emitted to signal some info of the + monitoring thread @signal reinitVCS() emitted after the VCS has been reinitialized @signal showMenu(str, QMenu) emitted when a menu is about to be shown. The name of the menu and a reference to the menu are given. @@ -139,6 +141,7 @@ prepareRepopulateItem = pyqtSignal(str) completeRepopulateItem = pyqtSignal(str) vcsStatusMonitorStatus = pyqtSignal(str, str) + vcsStatusMonitorInfo = pyqtSignal(str) reinitVCS = pyqtSignal() showMenu = pyqtSignal(str, QMenu) lexerAssociationsChanged = pyqtSignal() @@ -2764,6 +2767,8 @@ self.__model.changeVCSStates) self.vcs.vcsStatusMonitorStatus.connect( self.__statusMonitorStatus) + self.vcs.vcsStatusMonitorInfo.connect( + self.vcsStatusMonitorInfo) self.vcs.vcsStatusChanged.connect(self.__vcsStatusChanged) self.reinitVCS.emit() @@ -2992,6 +2997,8 @@ self.__model.changeVCSStates) self.vcs.vcsStatusMonitorStatus.connect( self.__statusMonitorStatus) + self.vcs.vcsStatusMonitorInfo.connect( + self.vcsStatusMonitorInfo) self.vcs.vcsStatusChanged.connect( self.__vcsStatusChanged) else: