diff -r d4fa462547bc -r a05eff845522 Project/NewDialogClassDialog.py --- a/Project/NewDialogClassDialog.py Tue Jan 07 18:08:40 2014 +0100 +++ b/Project/NewDialogClassDialog.py Wed Jan 08 19:07:23 2014 +0100 @@ -17,6 +17,8 @@ from .Ui_NewDialogClassDialog import Ui_NewDialogClassDialog +import UI.PixmapCache + class NewDialogClassDialog(QDialog, Ui_NewDialogClassDialog): """ @@ -35,6 +37,8 @@ super().__init__(parent) self.setupUi(self) + self.pathButton.setIcon(UI.PixmapCache.getIcon("open.png")) + self.okButton = self.buttonBox.button(QDialogButtonBox.Ok) self.okButton.setEnabled(False)