From: Jean-Baptiste Kempf Date: Mon, 10 Dec 2007 18:45:18 +0000 (+0000) Subject: Qt4 - minwidth of dropdown inside settings dialogs, patch by André Weber X-Git-Tag: 0.9.0-test0~4200 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=5b41c88864e2e6cb57cc9d37ca8ba35263827063;p=vlc Qt4 - minwidth of dropdown inside settings dialogs, patch by André Weber --- diff --git a/modules/gui/qt4/components/preferences_widgets.cpp b/modules/gui/qt4/components/preferences_widgets.cpp index 6844be6826..0f08e26d3c 100644 --- a/modules/gui/qt4/components/preferences_widgets.cpp +++ b/modules/gui/qt4/components/preferences_widgets.cpp @@ -354,6 +354,7 @@ StringListConfigControl::StringListConfigControl( vlc_object_t *_p_this, { label = new QLabel( qtr(p_item->psz_text) ); combo = new QComboBox(); + combo->setMinimumWidth( 80 ); finish( bycat ); if( !l ) { @@ -464,6 +465,7 @@ ModuleConfigControl::ModuleConfigControl( vlc_object_t *_p_this, { label = new QLabel( qtr(p_item->psz_text) ); combo = new QComboBox(); + combo->setMinimumWidth( 80 ); finish( bycat ); if( !l ) { @@ -797,6 +799,7 @@ IntegerListConfigControl::IntegerListConfigControl( vlc_object_t *_p_this, { label = new QLabel( qtr(p_item->psz_text) ); combo = new QComboBox(); + combo->setMinimumWidth( 80 ); finish( bycat ); if( !l ) { @@ -896,7 +899,8 @@ FloatConfigControl::FloatConfigControl( vlc_object_t *_p_this, VFloatConfigControl( _p_this, _p_item, _parent ) { label = new QLabel( qtr(p_item->psz_text) ); - spin = new QDoubleSpinBox; spin->setMinimumWidth( 80 ); + spin = new QDoubleSpinBox; + spin->setMinimumWidth( 80 ); spin->setMaximumWidth( 90 ); spin->setAlignment( Qt::AlignRight ); finish(); diff --git a/modules/gui/qt4/dialogs/preferences.cpp b/modules/gui/qt4/dialogs/preferences.cpp index e0076ee7d2..30fe02ec4c 100644 --- a/modules/gui/qt4/dialogs/preferences.cpp +++ b/modules/gui/qt4/dialogs/preferences.cpp @@ -35,7 +35,6 @@ #include #include #include -#include #include #include