]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Fix for bug 9286: Incorrect size of 'Select color' buttons of the 'Text property...
authorjfa <jfa@opencascade.com>
Tue, 18 Oct 2005 13:30:58 +0000 (13:30 +0000)
committerjfa <jfa@opencascade.com>
Tue, 18 Oct 2005 13:30:58 +0000 (13:30 +0000)
src/VISUGUI/VisuGUI_ScalarBarDlg.cxx

index 2e2ab54e2bfd1fa264e99ba76d8696ebf32cac7e..fc60f7f5c1bb2af19f53bccd63a2c2a46eac2d8e 100644 (file)
@@ -929,6 +929,7 @@ VisuGUI_TextPrefDlg::VisuGUI_TextPrefDlg(QWidget* parent) :
   aFontsLst.append("Times");
 
   myTitColor = new QToolButton(aTitleGrp);
+  myTitColor->setMinimumWidth( 20 );
   connect( myTitColor, SIGNAL(clicked()), this, SLOT(setTitleColor()) );
   aTitleLayout->addWidget(myTitColor, 1, 0);
 
@@ -955,6 +956,7 @@ VisuGUI_TextPrefDlg::VisuGUI_TextPrefDlg(QWidget* parent) :
   aLabelLayout->setMargin( 3 );
 
   myLblColor = new QToolButton(aLabelsGrp);
+  myLblColor->setMinimumWidth( 20 );
   connect( myLblColor, SIGNAL(clicked()), this, SLOT(setLabelColor()) );
   aLabelLayout->addWidget(myLblColor, 0, 0);