Skip to content

Commit 8375352

Browse files
committed
Fem: Fix display modes order - fixes FreeCAD#13326
1 parent ee39814 commit 8375352

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Mod/Fem/Gui/ViewProviderFemPostObject.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -369,11 +369,11 @@ std::vector<std::string> ViewProviderFemPostObject::getDisplayModes() const
369369
std::vector<std::string> StrList;
370370
StrList.emplace_back("Outline");
371371
StrList.emplace_back("Nodes");
372-
StrList.emplace_back("Nodes (surface only)");
373372
StrList.emplace_back("Surface");
374373
StrList.emplace_back("Surface with Edges");
375374
StrList.emplace_back("Wireframe");
376375
StrList.emplace_back("Wireframe (surface only)");
376+
StrList.emplace_back("Nodes (surface only)");
377377
return StrList;
378378
}
379379

0 commit comments

Comments
 (0)