From 2c593b67b4d87619b46059d9472ba9b01ca5b088 Mon Sep 17 00:00:00 2001 From: marioalexis84 <53127171+marioalexis84@users.noreply.github.com> Date: Mon, 8 Apr 2024 13:15:12 -0300 Subject: [PATCH] Fem: Fix display modes order - fixes #13326 (#13358) --- src/Mod/Fem/Gui/ViewProviderFemPostObject.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Fem/Gui/ViewProviderFemPostObject.cpp b/src/Mod/Fem/Gui/ViewProviderFemPostObject.cpp index 691e9361b1..9f8abd3c2a 100644 --- a/src/Mod/Fem/Gui/ViewProviderFemPostObject.cpp +++ b/src/Mod/Fem/Gui/ViewProviderFemPostObject.cpp @@ -369,11 +369,11 @@ std::vector ViewProviderFemPostObject::getDisplayModes() const std::vector 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; }