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 d485bf3741
commit 2c593b67b4

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;
}