Renamed menu entries and updated docs
This commit is contained in:
+6
-6
@@ -475,16 +475,16 @@ class GuiMainMenu(QMenuBar):
|
||||
# View > Separator
|
||||
self.viewMenu.addSeparator()
|
||||
|
||||
# View > Navigate Viewer Backward
|
||||
self.aViewPrev = QAction("Navigate Viewer Backward", self)
|
||||
self.aViewPrev.setStatusTip("Show the previous document in the right pane")
|
||||
# View > Go Backward
|
||||
self.aViewPrev = QAction("Go Backward", self)
|
||||
self.aViewPrev.setStatusTip("Move backward in the view history of the right pane")
|
||||
self.aViewPrev.setShortcut("Alt+Left")
|
||||
self.aViewPrev.triggered.connect(self.theParent.docViewer.navBackward)
|
||||
self.viewMenu.addAction(self.aViewPrev)
|
||||
|
||||
# View > Navigate Viewer Forward
|
||||
self.aViewNext = QAction("Navigate Viewer Forward", self)
|
||||
self.aViewNext.setStatusTip("Show the next document in the right pane")
|
||||
# View > Go Forward
|
||||
self.aViewNext = QAction("Go Forward", self)
|
||||
self.aViewNext.setStatusTip("Move forward in the view history of the right pane")
|
||||
self.aViewNext.setShortcut("Alt+Right")
|
||||
self.aViewNext.triggered.connect(self.theParent.docViewer.navForward)
|
||||
self.viewMenu.addAction(self.aViewNext)
|
||||
|
||||
Reference in New Issue
Block a user