From 8de93cfaf7cbe5bceeca709dda36aa09d99cefb6 Mon Sep 17 00:00:00 2001 From: Abdullah Tahiri Date: Wed, 2 Mar 2022 15:00:40 +0100 Subject: [PATCH] Sketcher: GeoElementId VAxis fix - windows --- src/Mod/Sketcher/App/GeoEnum.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Sketcher/App/GeoEnum.cpp b/src/Mod/Sketcher/App/GeoEnum.cpp index 429f96dd24..d09cba4ca4 100644 --- a/src/Mod/Sketcher/App/GeoEnum.cpp +++ b/src/Mod/Sketcher/App/GeoEnum.cpp @@ -39,5 +39,5 @@ bool GeoElementId::operator!=(const GeoElementId& obj) const #ifdef 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