diff --git a/src/GEOMToolsGUI/GEOMToolsGUI_1.cxx b/src/GEOMToolsGUI/GEOMToolsGUI_1.cxx index 31dd045d1..2c05e3457 100644 --- a/src/GEOMToolsGUI/GEOMToolsGUI_1.cxx +++ b/src/GEOMToolsGUI/GEOMToolsGUI_1.cxx @@ -91,7 +91,7 @@ void GEOMToolsGUI::OnSettingsColor() SUIT_ResourceMgr* resMgr = sess->resourceMgr(); SUIT_Desktop* desk = sess->activeApplication()->desktop(); - QColor anInitColor = resMgr->colorValue( "Geometry:SettingsShadingColor", QColor( "yellow" ) ); + QColor anInitColor = resMgr->colorValue( "Geometry", "SettingsShadingColor", QColor( "yellow" ) ); QColor aDialogColor = QColorDialog::getColor(anInitColor, desk ); if( aDialogColor.isValid() ) @@ -100,7 +100,7 @@ void GEOMToolsGUI::OnSettingsColor() if( type != OCCViewer_Viewer::Type() && type != VTKViewer_Viewer::Type() ) MESSAGE("Settings Color is not supported for current Viewer"); - resMgr->setValue( "Geometry:SettingsShadingColor", aDialogColor ); + resMgr->setValue( "Geometry", "SettingsShadingColor", aDialogColor ); } }