[change] load AUTO picks button will be reused now (old function deprecated as there is only one file for both types of picks) to automatically load all event information for all events given (TODO: currently only XML files!)
This commit is contained in:
parent
42c288ad82
commit
b0405cf213
12
QtPyLoT.py
12
QtPyLoT.py
@ -314,21 +314,21 @@ class MainWindow(QMainWindow):
|
|||||||
# self.createNewEvent,
|
# self.createNewEvent,
|
||||||
# QKeySequence.New, newIcon,
|
# QKeySequence.New, newIcon,
|
||||||
# "Create a new event.")
|
# "Create a new event.")
|
||||||
self.openmanualpicksaction = self.createAction(self, "Load &manual picks ...",
|
self.openmanualpicksaction = self.createAction(self, "Load event ...",
|
||||||
self.load_data,
|
self.load_data,
|
||||||
"Ctrl+M",
|
"Ctrl+M",
|
||||||
manupicksicon,
|
manupicksicon,
|
||||||
"Load manual picks for "
|
"Load event information for "
|
||||||
"the displayed event.")
|
"the displayed event.")
|
||||||
self.openmanualpicksaction.setEnabled(False)
|
self.openmanualpicksaction.setEnabled(False)
|
||||||
self.openmanualpicksaction.setData(None)
|
self.openmanualpicksaction.setData(None)
|
||||||
|
|
||||||
self.openautopicksaction = self.createAction(self, "Load &automatic picks ... ",
|
self.openautopicksaction = self.createAction(self, "Load event information &automatically ... ",
|
||||||
self.load_autopicks,
|
self.load_multiple_data,
|
||||||
"Ctrl+A",
|
"Ctrl+A",
|
||||||
autopicksicon,
|
autopicksicon,
|
||||||
"Load automatic picks "
|
"Load event data automatically "
|
||||||
"for the displayed event.")
|
"for for all events.")
|
||||||
self.openautopicksaction.setEnabled(False)
|
self.openautopicksaction.setEnabled(False)
|
||||||
self.openautopicksaction.setData(None)
|
self.openautopicksaction.setData(None)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user