From 58bdf3b14731866bf5c59e7b50984a6e2e1c09a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludger=20K=C3=BCperkoch?= Date: Fri, 17 Feb 2017 15:20:45 +0100 Subject: [PATCH] Additional new icon design. --- QtPyLoT.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/QtPyLoT.py b/QtPyLoT.py index 4ba89bb6..61cba36d 100755 --- a/QtPyLoT.py +++ b/QtPyLoT.py @@ -190,11 +190,11 @@ class MainWindow(QMainWindow): e_icon = QIcon() e_icon.addPixmap(QPixmap(':/icons/key_E.png')) auto_icon = QIcon() - auto_icon.addPixmap(QPixmap(':/icons/sync.png')) + auto_icon.addPixmap(QPixmap(':/icons/autopick_button.png')) locate_icon = QIcon() locate_icon.addPixmap(QPixmap(':/icons/locate_button.png')) compare_icon = QIcon() - compare_icon.addPixmap(QPixmap(':/icons/compare.png')) + compare_icon.addPixmap(QPixmap(':/icons/compare_button.png')) newEventAction = self.createAction(self, "&New event ...", self.createNewEvent, QKeySequence.New, newIcon, @@ -203,7 +203,7 @@ class MainWindow(QMainWindow): self.load_data, QKeySequence.Open, manupicksicon, - "Load pick data for " + "Load manual picks for " "the actual event.") openmanualpicksaction.setData(None) openautopicksaction = self.createAction(self, "Load &automatic picks " @@ -211,7 +211,7 @@ class MainWindow(QMainWindow): self.load_autopicks, "Ctrl+A", autopicksicon, - "Load automatic pick data " + "Load automatic picks " "for the actual event.") openautopicksaction.setData(None)