From 5d0e40a2caba6b8b8d91b6d6548e3ebe35b71f3c Mon Sep 17 00:00:00 2001 From: Abdullah Tahiri Date: Wed, 2 Mar 2022 07:50:36 +0100 Subject: [PATCH] Sketcher: Fix GeoElementId VAxis --- src/Mod/Sketcher/App/GeoEnum.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Sketcher/App/GeoEnum.h b/src/Mod/Sketcher/App/GeoEnum.h index 226ec01627..d77dc7d755 100644 --- a/src/Mod/Sketcher/App/GeoEnum.h +++ b/src/Mod/Sketcher/App/GeoEnum.h @@ -150,7 +150,7 @@ inline int GeoElementId::posIdAsInt() const { #ifndef FC_OS_WIN32 constexpr const GeoElementId GeoElementId::RtPnt = GeoElementId(GeoEnum::RtPnt, PointPos::start); constexpr const GeoElementId GeoElementId::HAxis = GeoElementId(GeoEnum::HAxis, PointPos::none); -constexpr const GeoElementId GeoElementId::VAxis = GeoElementId(GeoEnum::VAxis, PointPos::end); +constexpr const GeoElementId GeoElementId::VAxis = GeoElementId(GeoEnum::VAxis, PointPos::none); #endif } // namespace Sketcher