--- a/src/eric7/UI/CompareDialog.py Sat Nov 11 10:13:29 2023 +0100 +++ b/src/eric7/UI/CompareDialog.py Sat Nov 11 12:44:51 2023 +0100 @@ -104,8 +104,9 @@ Constructor @param files list of files to compare and their label - (list of two tuples of two strings) - @param parent parent widget (QWidget) + @type list of two tuples of (str, str) + @param parent parent widget + @type QWidget """ super().__init__(parent) self.setupUi(self) @@ -264,6 +265,8 @@ filename1 ), ) + self.filesGroup.show() + self.diffButton.show() return filename2 = self.file2Picker.text() @@ -278,6 +281,8 @@ filename2 ), ) + self.filesGroup.show() + self.diffButton.show() return self.__compare(lines1, lines2)