From 59452f6163f2e98b22ac10a68aa068b7ed6514b3 Mon Sep 17 00:00:00 2001 From: Leo Franchi Date: Thu, 2 Jun 2011 17:24:44 -0400 Subject: [PATCH] Try to avoid showing the window before placing it --- src/delegateconfigwrapper.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/delegateconfigwrapper.h b/src/delegateconfigwrapper.h index 6dc40700a..b7986ba88 100644 --- a/src/delegateconfigwrapper.h +++ b/src/delegateconfigwrapper.h @@ -28,7 +28,6 @@ class DelegateConfigWrapper : public QDialog public: DelegateConfigWrapper( QWidget* conf, const QString& title, QWidget* parent, Qt::WindowFlags flags = 0 ) : QDialog( parent, flags ), m_widget( conf ) { - m_widget->setVisible( true ); m_widget->setWindowFlags( Qt::Sheet ); setWindowTitle( title ); @@ -50,6 +49,7 @@ public: connect( conf, SIGNAL( sizeHintChanged() ), this, SLOT( updateSizeHint() ) ); #endif + m_widget->setVisible( true ); } public slots: void closed( QAbstractButton* b )