]> SALOME platform Git repositories - modules/kernel.git/commitdiff
Salome HOME
Fix for bug 9366: Incorrect size of 'Select color' buttons of the 'Setup Plot2d' dlg
authorjfa <jfa@opencascade.com>
Tue, 18 Oct 2005 13:32:08 +0000 (13:32 +0000)
committerjfa <jfa@opencascade.com>
Tue, 18 Oct 2005 13:32:08 +0000 (13:32 +0000)
src/Plot2d/Plot2d_SetupPlot2dDlg.cxx

index 1a14428e4342113344092cb3cd6c453cb4478036..5c3721a77ae70222ba02c239807bb8f1a6b42f42 100644 (file)
@@ -213,7 +213,7 @@ void Plot2d_SetupPlot2dDlg::getCurvesSource( int& horIndex, QValueList<int>& ver
 {
   /* collecting horizontal and vertical axis items */
   horIndex = -1;
-  int i, j;
+  int i;
   for ( i = 0; i < myItems.count(); i++ ) {
     if ( myItems.at( i )->isHorizontalOn() ) {
       horIndex = i;
@@ -500,6 +500,7 @@ void Plot2d_ItemContainer::createWidgets( QWidget* parentWidget )
   myMarkerCombo->setCurrentItem( 1 ); // CIRCLE by default
 
   myColorBtn = new QToolButton( parentWidget );
+  myColorBtn->setMinimumWidth( 20 );
 
   connect( myAutoCheck, SIGNAL( clicked() ),       this, SLOT( onAutoChanged() ) );
   connect( myColorBtn,  SIGNAL( clicked() ),       this, SLOT( onColorChanged() ) );