Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/SynthLab
diff options
context:
space:
mode:
authorNat <natcl@hotmail.com>2007-07-19 22:09:36 (GMT)
committer Nat <natcl@hotmail.com>2007-07-19 22:09:36 (GMT)
commitd96661cab886e6fb0600fe410a95326907645f07 (patch)
tree77bb93bc3f87bcafbfdb498b1dfc37ab98f0a531 /SynthLab
parent67b435e6ab251d3abfcc93bf656af33ec05bc2e3 (diff)
Synthlab cleanup
Diffstat (limited to 'SynthLab')
-rw-r--r--SynthLab/SynthLabWindow.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/SynthLab/SynthLabWindow.py b/SynthLab/SynthLabWindow.py
index 473fd91..453e6e8 100644
--- a/SynthLab/SynthLabWindow.py
+++ b/SynthLab/SynthLabWindow.py
@@ -112,23 +112,23 @@ class SynthLabWindow(SubActivity):
self.set_title("Synth Lab")
self.mainBox = gtk.VBox()
self.subBox = gtk.HBox()
- self.drawingBox = RoundVBox( 10, Config.INST_BCK_COLOR )
+ self.drawingBox = RoundVBox( 10, Config.INST_BCK_COLOR, Config.PANEL_BCK_COLOR )
self.drawingBox.set_border_width(Config.PANEL_SPACING)
- self.presetBox = RoundVBox( 10, Config.PANEL_COLOR )
+ self.presetBox = RoundVBox( 10, Config.PANEL_COLOR, Config.PANEL_BCK_COLOR )
self.presetBox.set_border_width(Config.PANEL_SPACING)
self.presetBox.set_size_request(100, 790)
self.subBox.pack_start(self.drawingBox, True, True)
- self.subBox.pack_start(self.presetBox, True, True)
+ #self.subBox.pack_start(self.presetBox, True, True)
self.mainBox.pack_start(self.subBox)
self.commandBox = gtk.HBox()
- self.sliderBox = RoundHBox( 10, Config.PANEL_COLOR )
+ self.sliderBox = RoundHBox( 10, Config.PANEL_COLOR, Config.PANEL_BCK_COLOR )
self.sliderBox.set_border_width(Config.PANEL_SPACING)
self.commandBox.pack_start(self.sliderBox)
- self.buttonBox = RoundHBox( 10, Config.PANEL_COLOR )
+ self.buttonBox = RoundHBox( 10, Config.PANEL_COLOR, Config.PANEL_BCK_COLOR )
self.buttonBox.set_border_width(Config.PANEL_SPACING)
self.commandBox.pack_start(self.buttonBox)
- self.mainBox.pack_start(self.commandBox)
+ #self.mainBox.pack_start(self.commandBox)
self.drawingAreaWidth = 1080
self.drawingAreaHeight = 790