Sample editor back working.

This commit is contained in:
James Grogan 2022-11-17 08:39:49 +00:00
parent 722bda2801
commit 7ad237edc1
10 changed files with 59 additions and 36 deletions

View file

@ -109,6 +109,11 @@ public:
mName = name;
}
const std::string& getName()
{
return mName;
}
bool needsUpdate() const;
protected:
@ -134,7 +139,7 @@ protected:
unsigned mBorderThickness{0};
Color mBackgroundColor;
Color mBorderColor;
bool mVisible{false};
bool mVisible{true};
std::unique_ptr<RectangleNode> mBackgroundNode;