3D editor stable with path tracer

This commit is contained in:
IlyaShurupov 2024-06-18 19:36:47 +03:00
parent 19706ed738
commit e8001cd95b
11 changed files with 144 additions and 19 deletions

View file

@ -8,7 +8,7 @@ namespace tp {
class ButtonWidget : public Widget<Events, Canvas> {
public:
ButtonWidget() {
this->setArea({ 0, 0, 100, 100 });
this->setArea({ 0, 0, 100, 30 });
this->mChildWidgets.pushBack(&mLabel);
}