mirror of
https://git.salome-platform.org/gitpub/modules/smesh.git
synced 2025-04-12 13:27:27 +05:00
Fix for bug 9366: incorrect size of the 'Select color' buttons
This commit is contained in:
parent
02175e2b01
commit
59b713cdcd
@ -168,9 +168,10 @@ SMESHGUI_Preferences_ScalarBarDlg::SMESHGUI_Preferences_ScalarBarDlg(QWidget* pa
|
|||||||
QGridLayout* myFontGrpLayout = new QGridLayout( myFontGrp->layout() );
|
QGridLayout* myFontGrpLayout = new QGridLayout( myFontGrp->layout() );
|
||||||
myFontGrpLayout->setAlignment( Qt::AlignTop );
|
myFontGrpLayout->setAlignment( Qt::AlignTop );
|
||||||
myFontGrpLayout->setSpacing( SPACING_SIZE ); myFontGrpLayout->setMargin( MARGIN_SIZE );
|
myFontGrpLayout->setSpacing( SPACING_SIZE ); myFontGrpLayout->setMargin( MARGIN_SIZE );
|
||||||
|
|
||||||
myTitleColorBtn = new QToolButton( myFontGrp, "myTitleColorBtn" );
|
myTitleColorBtn = new QToolButton( myFontGrp, "myTitleColorBtn" );
|
||||||
|
myTitleColorBtn->setMinimumWidth( 20 );
|
||||||
|
|
||||||
myTitleFontCombo = new QComboBox( false, myFontGrp, "myTitleFontCombo" );
|
myTitleFontCombo = new QComboBox( false, myFontGrp, "myTitleFontCombo" );
|
||||||
myTitleFontCombo->setMinimumWidth( MINIMUM_WIDTH );
|
myTitleFontCombo->setMinimumWidth( MINIMUM_WIDTH );
|
||||||
myTitleFontCombo->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
myTitleFontCombo->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
||||||
@ -183,7 +184,8 @@ SMESHGUI_Preferences_ScalarBarDlg::SMESHGUI_Preferences_ScalarBarDlg(QWidget* pa
|
|||||||
myTitleShadowCheck = new QCheckBox( tr( "SMESH_FONT_SHADOW" ), myFontGrp, "myTitleShadowCheck" );
|
myTitleShadowCheck = new QCheckBox( tr( "SMESH_FONT_SHADOW" ), myFontGrp, "myTitleShadowCheck" );
|
||||||
|
|
||||||
myLabelsColorBtn = new QToolButton( myFontGrp, "myLabelsColorBtn" );
|
myLabelsColorBtn = new QToolButton( myFontGrp, "myLabelsColorBtn" );
|
||||||
|
myLabelsColorBtn->setMinimumWidth( 20 );
|
||||||
|
|
||||||
myLabelsFontCombo = new QComboBox( false, myFontGrp, "myLabelsFontCombo" );
|
myLabelsFontCombo = new QComboBox( false, myFontGrp, "myLabelsFontCombo" );
|
||||||
myLabelsFontCombo->setMinimumWidth( MINIMUM_WIDTH );
|
myLabelsFontCombo->setMinimumWidth( MINIMUM_WIDTH );
|
||||||
myLabelsFontCombo->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
myLabelsFontCombo->setSizePolicy( QSizePolicy( QSizePolicy::Expanding, QSizePolicy::Fixed ) );
|
||||||
|
Loading…
x
Reference in New Issue
Block a user