Commit 580edf4d authored by Gildas Bazin's avatar Gildas Bazin

* modules/gui/wxwindows/wxwindows.cpp: fix for the skins showing the popup menu even when left-clicking with the mouse.
parent 5692fbd8
......@@ -2,7 +2,7 @@
* wxwindows.cpp : wxWindows plugin for vlc
*****************************************************************************
* Copyright (C) 2000-2001 VideoLAN
* $Id: wxwindows.cpp,v 1.32 2003/08/28 15:59:04 gbazin Exp $
* $Id: wxwindows.cpp,v 1.33 2003/10/04 14:59:38 gbazin Exp $
*
* Authors: Gildas Bazin <gbazin@netcourrier.com>
*
......@@ -301,8 +301,8 @@ static void ShowDialog( intf_thread_t *p_intf, int i_dialog_event, int i_arg,
#ifdef WIN32
SendMessage( (HWND)p_intf->p_sys->p_wxwindow->GetHandle(),
WM_CANCELMODE, 0, 0 );
if( i_dialog_event == INTF_DIALOG_POPUPMENU && i_arg == 0 ) return;
#endif
if( i_dialog_event == INTF_DIALOG_POPUPMENU && i_arg == 0 ) return;
/* Hack to prevent popup events to be enqueued when
* one is already active */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment