ArdourCanvas Rectangle: allow subclasses access to _rect

This commit is contained in:
Ben Loftis 2021-12-05 10:57:18 -06:00
parent 80939f2228
commit dc826c6521
1 changed files with 3 additions and 1 deletions

View File

@ -102,11 +102,13 @@ public:
void dump (std::ostream&) const;
private:
protected:
/** Our rectangle; note that x0 may not always be less than x1
* and likewise with y0 and y1.
*/
Rect _rect;
private:
What _outline_what;
double _corner_radius;
};