Skip to content

Commit

Permalink
Layout: Ensure that plugins that are by default next to Help can be next
Browse files Browse the repository at this point in the history
to VariableExplorer too
  • Loading branch information
hmaarrfk committed Jul 9, 2024
1 parent 0f78975 commit 1f9f1c6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion spyder/plugins/breakpoints/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Breakpoints(SpyderDockablePlugin):
NAME = 'breakpoints'
REQUIRES = [Plugins.Editor]
OPTIONAL = [Plugins.MainMenu]
TABIFY = [Plugins.Help]
TABIFY = [Plugins.VariableExplorer, Plugins.Help]
WIDGET_CLASS = BreakpointWidget
CONF_SECTION = NAME
CONF_FILE = False
Expand Down
2 changes: 1 addition & 1 deletion spyder/plugins/onlinehelp/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ class OnlineHelp(SpyderDockablePlugin):
"""

NAME = 'onlinehelp'
TABIFY = Plugins.Help
TABIFY = [Plugins.VariableExplorer, Plugins.Help]
CONF_SECTION = NAME
CONF_FILE = False
WIDGET_CLASS = PydocBrowser
Expand Down
2 changes: 1 addition & 1 deletion spyder/plugins/profiler/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Profiler(SpyderDockablePlugin):
NAME = 'profiler'
REQUIRES = [Plugins.Preferences, Plugins.Editor]
OPTIONAL = [Plugins.MainMenu]
TABIFY = [Plugins.Help]
TABIFY = [Plugins.VariableExplorer, Plugins.Help]
WIDGET_CLASS = ProfilerWidget
CONF_SECTION = NAME
CONF_WIDGET_CLASS = ProfilerConfigPage
Expand Down
2 changes: 1 addition & 1 deletion spyder/plugins/pylint/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Pylint(SpyderDockablePlugin):
CONF_WIDGET_CLASS = PylintConfigPage
REQUIRES = [Plugins.Preferences, Plugins.Editor]
OPTIONAL = [Plugins.MainMenu, Plugins.Projects]
TABIFY = [Plugins.Help]
TABIFY = [Plugins.VariableExplorer, Plugins.Help]
CONF_FILE = False
DISABLE_ACTIONS_WHEN_HIDDEN = False

Expand Down

0 comments on commit 1f9f1c6

Please sign in to comment.