diff --git a/modules/gui/qt4/components/playlist/standardpanel.cpp b/modules/gui/qt4/components/playlist/standardpanel.cpp index b172502d5061538dbc0a6094f0157bf107bbe41a..9339e40b57c38b9b593f9b3133815f378fbe05d4 100644 --- a/modules/gui/qt4/components/playlist/standardpanel.cpp +++ b/modules/gui/qt4/components/playlist/standardpanel.cpp @@ -251,6 +251,7 @@ void StandardPLPanel::popupAdd() popup.addAction( qtr(I_PL_ADDF), THEDP, SLOT( MLAppendDialog() ) ); popup.addAction( qtr(I_PL_ADDDIR), THEDP, SLOT( MLAppendDir() ) ); } + popup.exec( QCursor::pos() - addButton->mapFromGlobal( QCursor::pos() ) + QPoint( 0, addButton->height() ) ); } diff --git a/modules/gui/qt4/dialogs_provider.cpp b/modules/gui/qt4/dialogs_provider.cpp index 50ab5c34781a2b59dd9ffe1abf300a9686aa2000..3f8c2f1c2fa8e8677714c5bd63719bbd442f396b 100644 --- a/modules/gui/qt4/dialogs_provider.cpp +++ b/modules/gui/qt4/dialogs_provider.cpp @@ -349,17 +349,17 @@ void DialogsProvider::openCaptureDialog() } /* Same as the open one, but force the enqueue */ -void DialogsProvider::PLAppendDialog() +void DialogsProvider::PLAppendDialog( int tab ) { OpenDialog::getInstance( p_intf->p_sys->p_mi, p_intf, false, - OPEN_AND_ENQUEUE )->showTab( OPEN_FILE_TAB ); + OPEN_AND_ENQUEUE )->showTab( tab ); } -void DialogsProvider::MLAppendDialog() +void DialogsProvider::MLAppendDialog( int tab ) { OpenDialog::getInstance( p_intf->p_sys->p_mi, p_intf, false, OPEN_AND_ENQUEUE, false, false ) - ->showTab( OPEN_FILE_TAB ); + ->showTab( tab ); } /** diff --git a/modules/gui/qt4/dialogs_provider.hpp b/modules/gui/qt4/dialogs_provider.hpp index 105697cb5b247a6932ee84dc77746c0d0119e283..d65de886306d775d0cb5543fc7e8090e758e993a 100644 --- a/modules/gui/qt4/dialogs_provider.hpp +++ b/modules/gui/qt4/dialogs_provider.hpp @@ -33,7 +33,9 @@ #include "qt4.hpp" +#include "dialogs/open.hpp" #include <QObject> +#include <QStringList> #define ADD_FILTER_MEDIA( string ) \ string += qtr( "Media Files" ); \ @@ -82,7 +84,6 @@ enum { class QEvent; class QSignalMapper; class QVLCMenu; -#include <QStringList> class DialogsProvider : public QObject { @@ -171,8 +172,8 @@ public slots: void openNetDialog(); void openCaptureDialog(); - void PLAppendDialog(); - void MLAppendDialog(); + void PLAppendDialog( int tab = OPEN_FILE_TAB ); + void MLAppendDialog( int tab = OPEN_FILE_TAB ); void PLOpenDir(); void PLAppendDir();