Skip to content

Commit

Permalink
canvasmain: changed item names in help menu
Browse files Browse the repository at this point in the history
  • Loading branch information
irgolic committed Aug 27, 2018
1 parent c1072c8 commit abb5721
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions Orange/canvas/application/canvasmain.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,15 +466,15 @@ def setup_actions(self):
)

self.tutorials_action = \
QAction(self.tr("Tutorials"), self,
QAction(self.tr("YouTube Tutorials"), self,
objectName="tutorials-action",
toolTip=self.tr("View YouTube tutorials."),
triggered=self.tutorials,
icon=canvas_icons("YouTube.svg")
)

self.examples_action = \
QAction(self.tr("Examples"), self,
QAction(self.tr("Workflow Examples"), self,
objectName="tutorial-action",
toolTip=self.tr("Browse example workflows."),
triggered=self.tutorial_scheme,
Expand Down Expand Up @@ -1537,12 +1537,13 @@ def open_examples():
)

examples_action = \
QAction(self.examples_action.text(), dialog,
icon=self.examples_action.icon(),
toolTip=self.examples_action.toolTip(),
whatsThis=self.examples_action.whatsThis(),
triggered=open_examples,
QAction(self.tr("Examples"), self,
icon=canvas_icons("Examples.svg"),
toolTip=self.tr("Browse example workflows."),
objectName="tutorial-action",
triggered=open_examples
)

tutorials_action = \
QAction(self.tr("Tutorials"), self,
objectName="tutorials-action",
Expand Down

0 comments on commit abb5721

Please sign in to comment.