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-02-19 03:10:58 (GMT)
committer amartin <olpc@localhost.localdomain>2007-02-19 03:10:58 (GMT)
commit5dc1902fead1d72bcd1115b9576ac121abbb7b34 (patch)
tree7a5fb567d4a2e15c9d25b2eabb40355c9e463f74 /SynthLab
parentba93fb5ee02025223d74018df9bbcacf31d165a9 (diff)
context buttons, updated Image*Buttons,
Diffstat (limited to 'SynthLab')
-rw-r--r--SynthLab/SynthLabParametersWindow.py2
-rw-r--r--SynthLab/SynthLabWindow.py8
2 files changed, 5 insertions, 5 deletions
diff --git a/SynthLab/SynthLabParametersWindow.py b/SynthLab/SynthLabParametersWindow.py
index 499ffcb..45aff9f 100644
--- a/SynthLab/SynthLabParametersWindow.py
+++ b/SynthLab/SynthLabParametersWindow.py
@@ -129,7 +129,7 @@ class SynthLabParametersWindow( gtk.Window ):
self.mainBox.pack_start(self.sliderBox)
- closeButton = ImageButton(Config.TAM_TAM_ROOT + '/Resources/Images/close.png' )
+ closeButton = ImageButton(Config.IMAGE_ROOT + 'close.png' )
closeButton.connect('clicked', self.destroy )
self.mainBox.pack_start(closeButton)
diff --git a/SynthLab/SynthLabWindow.py b/SynthLab/SynthLabWindow.py
index 979aba7..6248418 100644
--- a/SynthLab/SynthLabWindow.py
+++ b/SynthLab/SynthLabWindow.py
@@ -149,11 +149,11 @@ class SynthLabWindow( gtk.Window ):
self.sliderBox.pack_start(self.durationSlider, True, True, 5)
self.sliderBox.pack_start(self.durLabel, False, padding=10)
- saveButton = ImageButton(Config.TAM_TAM_ROOT + '/Resources/Images/save.png')
+ saveButton = ImageButton(Config.IMAGE_ROOT + 'save.png')
saveButton.connect("clicked", self.handleSave, None)
self.buttonBox.pack_start(saveButton, False, False, 2)
- loadButton = ImageButton(Config.TAM_TAM_ROOT + '/Resources/Images/load.png')
+ loadButton = ImageButton(Config.IMAGE_ROOT + 'load.png')
loadButton.connect("clicked", self.handleLoad, None)
self.buttonBox.pack_start(loadButton, False, False, 2)
@@ -161,11 +161,11 @@ class SynthLabWindow( gtk.Window ):
self.recordButton.connect("clicked", self.recordSound)
self.buttonBox.pack_start(self.recordButton, False, False, 2)
- resetButton = ImageButton(Config.TAM_TAM_ROOT + '/Resources/Images/reset.png')
+ resetButton = ImageButton(Config.IMAGE_ROOT + 'reset.png')
resetButton.connect("clicked", self.handleReset, None)
self.buttonBox.pack_start(resetButton, False, False, 2)
- closeButton = ImageButton(Config.TAM_TAM_ROOT + '/Resources/Images/close.png')
+ closeButton = ImageButton(Config.IMAGE_ROOT + 'close.png')
closeButton.connect("clicked", self.handleClose, None)
self.buttonBox.pack_start(closeButton, False, False, 2)