]> SALOME platform Git repositories - modules/visu.git/commitdiff
Salome HOME
To put functions calls in right order T_MULTIPR_INDUS_2007-07-23
authorapo <apo@opencascade.com>
Mon, 23 Jul 2007 13:36:52 +0000 (13:36 +0000)
committerapo <apo@opencascade.com>
Mon, 23 Jul 2007 13:36:52 +0000 (13:36 +0000)
src/VISU_I/VISU_ColoredPrs3d_i.cc

index 488db1569356d39ac55809bf5bbe62835d1bb0dc..54cd8f03543be06b6f36b1b7e1d108ab731c24d5 100644 (file)
@@ -1133,13 +1133,12 @@ VISU::ColoredPrs3d_i
 
   // Scalar Range
   int aRangeType = aResourceMgr->integerValue("VISU" , "scalar_range_type", 0);
-  UseFixedRange(aRangeType == 1);
-
-  if(IsRangeFixed()){
+  if(aRangeType == 1){
     float aMin = aResourceMgr->doubleValue("VISU", "scalar_range_min", 0);
     float aMax = aResourceMgr->doubleValue("VISU", "scalar_range_max", 0);
     SetRange(aMin, aMax);
   }
+  UseFixedRange(aRangeType == 1);
 
   int aNumberOfColors = aResourceMgr->integerValue( "VISU", "scalar_bar_num_colors", 64 );
   SetNbColors(aNumberOfColors);