]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
Fixed method ReadData(...)
authorenk <enk@opencascade.com>
Thu, 26 May 2005 13:52:51 +0000 (13:52 +0000)
committerenk <enk@opencascade.com>
Thu, 26 May 2005 13:52:51 +0000 (13:52 +0000)
where was incorrect reading color for LabelTextProperty

src/VISUGUI/VisuGUI_CubeAxesDlg.cxx

index baefe0cb303b718a80284e5d8e5cebb821d74ad4..46fe1073b8869269124daf31129dcf77011ec163 100755 (executable)
@@ -273,7 +273,7 @@ bool VisuGUI_AxisWg::ReadData( vtkAxisActor2D* theActor )
   {\r
     float c[ 3 ];\r
     aLabelsProp->GetColor( c );\r
-    aLabelsColor.setRgb( (int)( c[ 0 ] * 255 ), (int)( c[ 0 ] * 255 ), (int)( c[ 0 ] * 255 ) );\r
+    aLabelsColor.setRgb( (int)( c[ 0 ] * 255 ), (int)( c[ 1 ] * 255 ), (int)( c[ 2 ] * 255 ) );\r
     aLabelsFontFamily = aLabelsProp->GetFontFamily();\r
     isLabelsBold = aLabelsProp->GetBold() ? true : false;\r
     isLabelsItalic = aLabelsProp->GetItalic() ? true : false;\r