Fix for Issue #94. Release Build 12247.
All checks were successful
Emscripten Build / Build_and_Deploy_Web_Build (push) Successful in 6m43s

This commit is contained in:
sigonasr2 2025-08-04 08:41:12 -05:00
parent 4d2eb86efe
commit 7fb7430a6f
3 changed files with 2 additions and 2 deletions

View File

@ -98,8 +98,8 @@ private:
std::string label=""; std::string label="";
std::weak_ptr<MenuComponent>subcomponentParent; //For subcomponents, this value provides the actual component this subcomponent was spawned from. std::weak_ptr<MenuComponent>subcomponentParent; //For subcomponents, this value provides the actual component this subcomponent was spawned from.
int depth=0; //Higher depth (positive) means buried further back. Lower depth (negative) means behind. If you have to modify depth, use the DEPTH macro!!!
protected: protected:
int depth=0; //Higher depth (positive) means in front. Lower depth (negative) means behind.
float hoverEffect=0; float hoverEffect=0;
std::string name=""; std::string name="";
geom2d::rect<float>rect; geom2d::rect<float>rect;

View File

@ -39,7 +39,7 @@ All rights reserved.
#define VERSION_MAJOR 1 #define VERSION_MAJOR 1
#define VERSION_MINOR 3 #define VERSION_MINOR 3
#define VERSION_PATCH 0 #define VERSION_PATCH 0
#define VERSION_BUILD 12246 #define VERSION_BUILD 12247
#define stringify(a) stringify_(a) #define stringify(a) stringify_(a)
#define stringify_(a) #a #define stringify_(a) #a