Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/SynthLab
diff options
context:
space:
mode:
authorolipet <olpc@localhost.localdomain>2007-01-12 23:37:52 (GMT)
committer olipet <olpc@localhost.localdomain>2007-01-12 23:37:52 (GMT)
commitc7d792a296822298082b4e21488b0ff07d7fc727 (patch)
treeae6ece0db124cfc1f7589e86f077755699e9839c /SynthLab
parent40f0f34841c4aa23fe9fc06e5a0bef075a72079f (diff)
keyboard fix ( introduce by sequencer )
Diffstat (limited to 'SynthLab')
-rw-r--r--SynthLab/SynthLabWindow.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/SynthLab/SynthLabWindow.py b/SynthLab/SynthLabWindow.py
index ef5c61a..2750a11 100644
--- a/SynthLab/SynthLabWindow.py
+++ b/SynthLab/SynthLabWindow.py
@@ -21,6 +21,7 @@ class SynthLabWindow( gtk.Window ):
color = gtk.gdk.color_parse(Config.PANEL_BCK_COLOR)
self.modify_bg(gtk.STATE_NORMAL, color)
self.set_border_width(Config.MAIN_WINDOW_PADDING)
+ self.set_keep_above(False)
self.csnd = client
self.table = table
self.closeCallback = closeCallback
@@ -198,6 +199,7 @@ class SynthLabWindow( gtk.Window ):
def handleClose( self, widget, data ):
if self.instanceOpen:
self.synthLabParametersWindow.destroy()
+ self.set_keep_above(False)
self.closeCallback()
self.hide()