[vlc-commits] Qt: InputManager: move name updates to unified events loop.
Francois Cartegnie
git at videolan.org
Sun Aug 26 16:31:22 CEST 2012
vlc | branch: master | Francois Cartegnie <fcvlcdev at free.fr> | Sun Aug 26 16:29:55 2012 +0200| [c7ab9f113d6a3e788d05a45ad2ccd31527901d88] | committer: Francois Cartegnie
Qt: InputManager: move name updates to unified events loop.
name update event was triggering updatename() before the meta
changes were propagated (delayed by the event dedup loop)
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=c7ab9f113d6a3e788d05a45ad2ccd31527901d88
---
modules/gui/qt4/input_manager.cpp | 1 +
1 file changed, 1 insertion(+)
diff --git a/modules/gui/qt4/input_manager.cpp b/modules/gui/qt4/input_manager.cpp
index dae5ef5..83721ac 100644
--- a/modules/gui/qt4/input_manager.cpp
+++ b/modules/gui/qt4/input_manager.cpp
@@ -355,6 +355,7 @@ static int InputEvent( vlc_object_t *p_this, const char *,
event = new IMEvent( IMEvent::InfoChanged );
break;
case INPUT_EVENT_ITEM_NAME:
+ b_unified = true;
event = new IMEvent( IMEvent::NameChanged );
break;
More information about the vlc-commits
mailing list