--- a/src/eric7/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py Mon Sep 19 11:58:40 2022 +0200 +++ b/src/eric7/Plugins/CheckerPlugins/SyntaxChecker/SyntaxCheckerDialog.py Mon Sep 19 16:43:18 2022 +0200 @@ -74,8 +74,6 @@ self.filterFrame.setVisible(False) self.checkProgress.setVisible(False) - self.checkProgressLabel.setVisible(False) - self.checkProgressLabel.setMaximumWidth(600) try: self.syntaxCheckService = ericApp().getObject("SyntaxCheckService") @@ -220,7 +218,6 @@ if codestring or len(self.files) > 0: self.checkProgress.setMaximum(max(1, len(self.files))) self.checkProgress.setVisible(len(self.files) > 1) - self.checkProgressLabel.setVisible(len(self.files) > 1) QApplication.processEvents() # now go through all the files @@ -243,7 +240,6 @@ @param codestring optional sourcestring (str) """ if self.syntaxCheckService is None or not self.files: - self.checkProgressLabel.setPath("") self.checkProgress.setMaximum(1) self.checkProgress.setValue(1) self.__finish() @@ -251,7 +247,6 @@ self.filename = self.files.pop(0) self.checkProgress.setValue(self.progress) - self.checkProgressLabel.setPath(self.filename) QApplication.processEvents() self.__resort() @@ -291,7 +286,6 @@ """ self.__lastFileItem = None - self.checkProgressLabel.setPath(self.tr("Preparing files...")) argumentsList = [] for progress, filename in enumerate(self.files, start=1): @@ -318,7 +312,6 @@ # reset the progress bar to the checked files self.checkProgress.setValue(self.progress) - self.checkProgressLabel.setPath(self.tr("Transferring data...")) QApplication.processEvents() self.__finished = False @@ -328,7 +321,6 @@ """ Private slot handling the completion of a batch job. """ - self.checkProgressLabel.setPath("") self.checkProgress.setMaximum(1) self.checkProgress.setValue(1) self.__finish() @@ -395,7 +387,6 @@ self.progress += 1 self.checkProgress.setValue(self.progress) - self.checkProgressLabel.setPath(fn) if time.monotonic() - self.__timenow > 0.01: QApplication.processEvents() self.__timenow = time.monotonic() @@ -435,7 +426,6 @@ self.resultList.header().setStretchLastSection(True) self.checkProgress.setVisible(False) - self.checkProgressLabel.setVisible(False) def on_buttonBox_clicked(self, button): """