Qt4 - minwidth of dropdown inside settings dialogs, patch by André Weber

This commit is contained in:
Jean-Baptiste Kempf 2007-12-10 18:45:18 +00:00
parent c8a09ea6dd
commit 5b41c88864
2 changed files with 5 additions and 2 deletions

View 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();

View File

@ -35,7 +35,6 @@
#include <QVBoxLayout>
#include <QPushButton>
#include <QCheckBox>
#include <QScrollArea>
#include <QMessageBox>
#include <QDialogButtonBox>