diff -r fccf607a5326 -r 6191abce8002 eric6/UI/FindFileDialog.py --- a/eric6/UI/FindFileDialog.py Wed Jul 31 19:11:39 2019 +0200 +++ b/eric6/UI/FindFileDialog.py Thu Aug 01 18:49:42 2019 +0200 @@ -229,24 +229,31 @@ @pyqtSlot() def on_projectButton_clicked(self): """ - Private slot to handle the selection of the project radio button. + Private slot to handle the selection of the 'Project' radio button. """ self.__enableFindButton() @pyqtSlot() def on_dirButton_clicked(self): """ - Private slot to handle the selection of the project radio button. + Private slot to handle the selection of the 'Directory' radio button. """ self.__enableFindButton() - + + @pyqtSlot() + def on_openFilesButton_clicked(self): + """ + Private slot to handle the selection of the 'Open Files' radio button. + """ + self.__enableFindButton() + @pyqtSlot() def on_filterCheckBox_clicked(self): """ Private slot to handle the selection of the file filter check box. """ self.__enableFindButton() - + @pyqtSlot(str) def on_filterEdit_textEdited(self, text): """ @@ -255,7 +262,7 @@ @param text (ignored) """ self.__enableFindButton() - + def __enableFindButton(self): """ Private slot called to enable the find button.