132 """ |
132 """ |
133 Private slot to handle the user style sheet selection. |
133 Private slot to handle the user style sheet selection. |
134 """ |
134 """ |
135 file = E5FileDialog.getOpenFileName( |
135 file = E5FileDialog.getOpenFileName( |
136 self, |
136 self, |
137 self.trUtf8("Select Style Sheet"), |
137 self.tr("Select Style Sheet"), |
138 self.styleSheetEdit.text(), |
138 self.styleSheetEdit.text(), |
139 "") |
139 "") |
140 |
140 |
141 if file: |
141 if file: |
142 self.styleSheetEdit.setText(Utilities.toNativeSeparators(file)) |
142 self.styleSheetEdit.setText(Utilities.toNativeSeparators(file)) |