Fem: Fix display modes order - fixes #13326 (#13358)

This commit is contained in:
marioalexis84
2024-04-08 13:15:12 -03:00
committed by GitHub
parent afb4d6a344
commit cc96f2718e

View File

@@ -369,11 +369,11 @@ std::vector<std::string> ViewProviderFemPostObject::getDisplayModes() const
std::vector<std::string> StrList;
StrList.emplace_back("Outline");
StrList.emplace_back("Nodes");
StrList.emplace_back("Nodes (surface only)");
StrList.emplace_back("Surface");
StrList.emplace_back("Surface with Edges");
StrList.emplace_back("Wireframe");
StrList.emplace_back("Wireframe (surface only)");
StrList.emplace_back("Nodes (surface only)");
return StrList;
}