Fix icon
offlate/ui/new.py
37 | 37 | def initUI(self): | |
38 | 38 | predefinedbox = QVBoxLayout() | |
39 | 39 | self.searchfield = QLineEdit() | |
40 | - | self.searchfield.addAction(QIcon.fromTheme("search"), QLineEdit.LeadingPosition) | |
40 | + | self.searchfield.addAction(QIcon.fromTheme("system-search"), QLineEdit.LeadingPosition) | |
41 | 41 | predefinedbox.addWidget(self.searchfield) | |
42 | 42 | self.predefinedprojects = QListWidget() | |
43 | 43 | with open(os.path.dirname(__file__) + '/../data/data.json') as f: |