diff --git a/code/nel/tools/3d/object_viewer_qt/src/settings_dialog.cpp b/code/nel/tools/3d/object_viewer_qt/src/settings_dialog.cpp index 77b7ea672..45dab6fc8 100644 --- a/code/nel/tools/3d/object_viewer_qt/src/settings_dialog.cpp +++ b/code/nel/tools/3d/object_viewer_qt/src/settings_dialog.cpp @@ -367,8 +367,7 @@ void CSettingsDialog::savePathsSettings() std::string str = ui.pathsListWidget->item(i)->text().toStdString(); list.push_back(str); } - if (ui.pathsListWidget->count() == 0) - list.push_back("WARNING: Delete this string"); + Modules::config().getConfigFile().getVar("SearchPaths").Type = NLMISC::CConfigFile::CVar::T_STRING; Modules::config().getConfigFile().getVar("SearchPaths").setAsString(list); } @@ -384,8 +383,8 @@ void CSettingsDialog::saveVegetableSettings() std::string str = ui.zonesListWidget->item(i)->text().toStdString(); list.push_back(str); } - if (ui.zonesListWidget->count() == 0) - list.push_back("WARNING: Delete this string"); + + Modules::config().getConfigFile().getVar("VegetLandscapeZones").Type = NLMISC::CConfigFile::CVar::T_STRING; Modules::config().getConfigFile().getVar("VegetLandscapeZones").setAsString(list); }