Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/SynthLab
diff options
context:
space:
mode:
authoramartin <olpc@localhost.localdomain>2007-01-19 11:17:21 (GMT)
committer amartin <olpc@localhost.localdomain>2007-01-19 11:17:21 (GMT)
commit3ef626cf8302e8c7ec32a385adef3f6fb76776b8 (patch)
treec8830bc0ed9d26549d16d984bea52bddfbfa76d6 /SynthLab
parentf84c0ca843bf6c78b05a7749539a39882e3c05e3 (diff)
HitInterface first draft
Diffstat (limited to 'SynthLab')
-rw-r--r--SynthLab/SynthLabWindow.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/SynthLab/SynthLabWindow.py b/SynthLab/SynthLabWindow.py
index b419c4f..8ff9517 100644
--- a/SynthLab/SynthLabWindow.py
+++ b/SynthLab/SynthLabWindow.py
@@ -56,10 +56,10 @@ class SynthLabWindow( gtk.Window ):
self.mainBox = gtk.VBox()
self.subBox = gtk.HBox()
self.drawingBox = RoundVBox(fillcolor=Config.INST_BCK_COLOR)
- self.drawingBox.set_border_width(Config.BORDER_SIZE)
+ self.drawingBox.set_border_width(Config.PANEL_SPACING)
self.drawingBox.set_radius(10)
self.presetBox = RoundVBox(fillcolor=Config.PANEL_COLOR)
- self.presetBox.set_border_width(Config.BORDER_SIZE)
+ self.presetBox.set_border_width(Config.PANEL_SPACING)
self.presetBox.set_radius(10)
self.presetBox.set_size_request(100, 790)
self.subBox.pack_start(self.drawingBox, True, True)
@@ -68,11 +68,11 @@ class SynthLabWindow( gtk.Window ):
self.commandBox = gtk.HBox()
self.sliderBox = RoundHBox(fillcolor=Config.PANEL_COLOR)
- self.sliderBox.set_border_width(Config.BORDER_SIZE)
+ self.sliderBox.set_border_width(Config.PANEL_SPACING)
self.sliderBox.set_radius(10)
self.commandBox.pack_start(self.sliderBox)
self.buttonBox = RoundHBox(fillcolor=Config.PANEL_COLOR)
- self.buttonBox.set_border_width(Config.BORDER_SIZE)
+ self.buttonBox.set_border_width(Config.PANEL_SPACING)
self.buttonBox.set_radius(10)
self.commandBox.pack_start(self.buttonBox)
self.mainBox.pack_start(self.commandBox)