]> git.sesse.net Git - vlc/commitdiff
Qt4 - minwidth of dropdown inside settings dialogs, patch by André Weber
authorJean-Baptiste Kempf <jb@videolan.org>
Mon, 10 Dec 2007 18:45:18 +0000 (18:45 +0000)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 10 Dec 2007 18:45:18 +0000 (18:45 +0000)
modules/gui/qt4/components/preferences_widgets.cpp
modules/gui/qt4/dialogs/preferences.cpp

index 6844be6826357d2e4eb61fe4e4c1805e233dc8b5..0f08e26d3ce38826b853f477091f9c3eee5ac743 100644 (file)
@@ -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();
index e0076ee7d242aaa8107a1459acd0e89788c54808..30fe02ec4c08b40a00ea0eccce985b4fd6b529fb 100644 (file)
@@ -35,7 +35,6 @@
 #include <QVBoxLayout>
 #include <QPushButton>
 #include <QCheckBox>
-#include <QScrollArea>
 #include <QMessageBox>
 #include <QDialogButtonBox>