[vlc-commits] commit: skins2: fix wrong focus (Erwan Tulou )
git at videolan.org
git at videolan.org
Fri Mar 19 11:55:03 CET 2010
vlc | branch: master | Erwan Tulou <erwan10 at videolan.org> | Tue Mar 2 17:22:24 2010 +0100| [fb1ba080abfb80e87ef8a6b72ab8b7ee8c918c76] | committer: Erwan Tulou
skins2: fix wrong focus
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=fb1ba080abfb80e87ef8a6b72ab8b7ee8c918c76
---
modules/gui/skins2/src/top_window.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/skins2/src/top_window.cpp b/modules/gui/skins2/src/top_window.cpp
index c6c7142..d45a2d4 100644
--- a/modules/gui/skins2/src/top_window.cpp
+++ b/modules/gui/skins2/src/top_window.cpp
@@ -163,7 +163,7 @@ void TopWindow::processEvent( EvtMouse &rEvtMouse )
if( pNewHitControl != m_pFocusControl )
{
m_pFocusControl = pNewHitControl;
- EvtFocus evt( getIntf(), false );
+ EvtFocus evt( getIntf(), true );
pNewHitControl->handleEvent( evt );
}
}
More information about the vlc-commits
mailing list