From 5c64761a253658980113e1d9d0f399e9450cd953 Mon Sep 17 00:00:00 2001 From: Jean-Baptiste Kempf Date: Mon, 18 Feb 2008 07:54:11 +0000 Subject: [PATCH] Qt4 - Fix display bug using the Sout dialog. --- modules/gui/qt4/dialogs/sout.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/gui/qt4/dialogs/sout.hpp b/modules/gui/qt4/dialogs/sout.hpp index b01812d9be..6947bbb855 100644 --- a/modules/gui/qt4/dialogs/sout.hpp +++ b/modules/gui/qt4/dialogs/sout.hpp @@ -50,7 +50,8 @@ public: instance = new SoutDialog( parent, p_intf, transcode_only ); else { - instance->setParent( parent ); + /* Recenter the dialog on the parent */ + instance->setParent( parent, Qt::Dialog ); if( transcode_only != instance->b_transcode_only ) { instance->toggleSout(); -- 2.39.5