[vlc-commits] commit: vlcwidget: handle map instead of map-event for window embedding ( Chris Venter )
git at videolan.org
git at videolan.org
Wed Jun 16 09:18:23 CEST 2010
vlc/python | branch: master | Chris Venter <chris.venter at gmail.com> | Wed Jun 16 08:53:35 2010 +0200| [9d1d50e67f76b784c89e44f4b3946495749d0585] | committer: Olivier Aubert
vlcwidget: handle map instead of map-event for window embedding
Signed-off-by: Olivier Aubert <olivier.aubert at liris.cnrs.fr>
> http://git.videolan.org/gitweb.cgi/vlc/python.git/?a=commit;h=9d1d50e67f76b784c89e44f4b3946495749d0585
---
vlcwidget.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/vlcwidget.py b/vlcwidget.py
index d147b14..829fd69 100755
--- a/vlcwidget.py
+++ b/vlcwidget.py
@@ -36,7 +36,7 @@ class VLCWidget(gtk.DrawingArea):
else:
self.player.set_xwindow(self.window.xid)
return True
- self.connect("map-event", handle_embed)
+ self.connect("map", handle_embed)
self.set_size_request(320, 200)
class DecoratedVLCWidget(gtk.VBox):
More information about the vlc-commits
mailing list