Additional new icon design.

This commit is contained in:
Ludger Küperkoch 2017-02-17 15:20:45 +01:00
parent e306a60b27
commit 58bdf3b147

View File

@ -190,11 +190,11 @@ class MainWindow(QMainWindow):
e_icon = QIcon() e_icon = QIcon()
e_icon.addPixmap(QPixmap(':/icons/key_E.png')) e_icon.addPixmap(QPixmap(':/icons/key_E.png'))
auto_icon = QIcon() auto_icon = QIcon()
auto_icon.addPixmap(QPixmap(':/icons/sync.png')) auto_icon.addPixmap(QPixmap(':/icons/autopick_button.png'))
locate_icon = QIcon() locate_icon = QIcon()
locate_icon.addPixmap(QPixmap(':/icons/locate_button.png')) locate_icon.addPixmap(QPixmap(':/icons/locate_button.png'))
compare_icon = QIcon() compare_icon = QIcon()
compare_icon.addPixmap(QPixmap(':/icons/compare.png')) compare_icon.addPixmap(QPixmap(':/icons/compare_button.png'))
newEventAction = self.createAction(self, "&New event ...", newEventAction = self.createAction(self, "&New event ...",
self.createNewEvent, self.createNewEvent,
QKeySequence.New, newIcon, QKeySequence.New, newIcon,
@ -203,7 +203,7 @@ class MainWindow(QMainWindow):
self.load_data, self.load_data,
QKeySequence.Open, QKeySequence.Open,
manupicksicon, manupicksicon,
"Load pick data for " "Load manual picks for "
"the actual event.") "the actual event.")
openmanualpicksaction.setData(None) openmanualpicksaction.setData(None)
openautopicksaction = self.createAction(self, "Load &automatic picks " openautopicksaction = self.createAction(self, "Load &automatic picks "
@ -211,7 +211,7 @@ class MainWindow(QMainWindow):
self.load_autopicks, self.load_autopicks,
"Ctrl+A", "Ctrl+A",
autopicksicon, autopicksicon,
"Load automatic pick data " "Load automatic picks "
"for the actual event.") "for the actual event.")
openautopicksaction.setData(None) openautopicksaction.setData(None)