Skip to content
Snippets Groups Projects
Commit 2a89c890 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

Plot control panels are now docked on the right by default.

parent 5217246c
No related branches found
No related tags found
No related merge requests found
...@@ -112,8 +112,9 @@ class HistogramPanel(plotpanel.OverlayPlotPanel): ...@@ -112,8 +112,9 @@ class HistogramPanel(plotpanel.OverlayPlotPanel):
"""Shows/hides a :class:`.HistogramControlPanel`. See """Shows/hides a :class:`.HistogramControlPanel`. See
:meth:`.ViewPanel.togglePanel`. :meth:`.ViewPanel.togglePanel`.
""" """
self.togglePanel( self.togglePanel(histogramcontrolpanel.HistogramControlPanel,
histogramcontrolpanel.HistogramControlPanel, self, location=wx.TOP) self,
location=wx.RIGHT)
def getActions(self): def getActions(self):
......
...@@ -116,7 +116,7 @@ class PowerSpectrumPanel(plotpanel.OverlayPlotPanel): ...@@ -116,7 +116,7 @@ class PowerSpectrumPanel(plotpanel.OverlayPlotPanel):
""" """
self.togglePanel(pscontrol.PowerSpectrumControlPanel, self.togglePanel(pscontrol.PowerSpectrumControlPanel,
self, self,
location=wx.TOP) location=wx.RIGHT)
@actions.toggleControlAction(plotlistpanel.PlotListPanel) @actions.toggleControlAction(plotlistpanel.PlotListPanel)
......
...@@ -172,7 +172,7 @@ class TimeSeriesPanel(plotpanel.OverlayPlotPanel): ...@@ -172,7 +172,7 @@ class TimeSeriesPanel(plotpanel.OverlayPlotPanel):
""" """
self.togglePanel(timeseriescontrolpanel.TimeSeriesControlPanel, self.togglePanel(timeseriescontrolpanel.TimeSeriesControlPanel,
self, self,
location=wx.TOP) location=wx.RIGHT)
def getActions(self): def getActions(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment