Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Fix tour icons #15052

Merged
merged 1 commit into from
Mar 30, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions spyder/app/tour.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ def get_tour(index):
environment. This tip panel supports rich text. <br>\
<br> it also supports image insertion to the right so\
far",
'image': 'tour-spyder-logo.png'},
'image': 'spyder_about'},

{'title': "Widget display",
'content': ("This show how a widget is displayed. The tip panel "
Expand Down Expand Up @@ -152,7 +152,7 @@ def get_tour(index):
"important features.<br><br>"
"Please use the arrow keys or click on the buttons "
"below to move along the tour."),
'image': 'tour-spyder-logo.png'},
'image': 'spyder_about'},

{'title': _("Editor"),
'content': _("This is where you write Python code before "
Expand Down Expand Up @@ -274,7 +274,7 @@ def get_tour(index):
'information, check out our '
'<a href="{}">documentation</a>.'
'<br><br>').format(__docs_url__),
'image': 'tour-spyder-logo.png'
'image': 'spyder_about'
},

]
Expand Down Expand Up @@ -323,7 +323,7 @@ def get_tour(index):
feat30 = [{'title': "New features in Spyder 3.0",
'content': _("<b>Spyder</b> is an interactive development "
"environment based on bla"),
'image': 'spyder.png'},
'image': 'spyder_about'},

{'title': _("Welcome to Spyder introduction tour"),
'content': _("Spyder is an interactive development environment "
Expand Down