diff options
-rw-r--r-- | eitControl.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/eitControl.py b/eitControl.py index bbc5fd2..8b69d2f 100644 --- a/eitControl.py +++ b/eitControl.py @@ -95,7 +95,8 @@ class Experiment: d1 = Dock("Global", size=(5,1)) d2 = Dock("Data", size=(100,100)) d3 = Dock("RF Gen", size=(1,2)) - dS = Dock("Status", size=(1,2)) + dS = Dock("Status", size=(1,2), autoOrientation=False) + dS.setOrientation(o='horizontal') area.addDock(d1, 'top') area.addDock(dS, 'bottom', d1) area.addDock(d2, 'bottom', dS) |