From 38c0d1c2cb96dc4c17210535a92cc285dabf71bd Mon Sep 17 00:00:00 2001 From: jfa Date: Tue, 18 Oct 2005 14:55:01 +0000 Subject: [PATCH] Fix for bug 9366: Incorrect size of 'Select color' buttons of the 'Curve Setup' dlg --- src/SALOMEGUI/SALOMEGUI_SetupCurveDlg.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/SALOMEGUI/SALOMEGUI_SetupCurveDlg.cxx b/src/SALOMEGUI/SALOMEGUI_SetupCurveDlg.cxx index 4265cb95d..e6905c5d4 100644 --- a/src/SALOMEGUI/SALOMEGUI_SetupCurveDlg.cxx +++ b/src/SALOMEGUI/SALOMEGUI_SetupCurveDlg.cxx @@ -82,6 +82,7 @@ SALOMEGUI_SetupCurveDlg::SALOMEGUI_SetupCurveDlg( QWidget* parent ) QLabel* aColorLab = new QLabel( tr( "CURVE_COLOR_LAB" ), TopGroup ); myColorBtn = new QToolButton( TopGroup ); + myColorBtn->setMinimumSize( 20, 20 ); TopGroupLayout->addWidget( aLineTypeLab, 0, 0 ); TopGroupLayout->addMultiCellWidget( myLineCombo, 0, 0, 1, 2 ); -- 2.39.2