diff -r afdab56e8210 -r fe094d0687ad src/ui/objecteditor.cpp --- a/src/ui/objecteditor.cpp Wed Jun 22 23:32:34 2022 +0300 +++ b/src/ui/objecteditor.cpp Wed Jun 22 23:51:06 2022 +0300 @@ -119,14 +119,4 @@ QWidget{parent} { this->ui.setupUi(this); - this->editorwidgets.resize(NUM_PROPERTIES); - QFormLayout* layout = new QFormLayout{this}; - for (std::size_t i = 0; i < NUM_PROPERTIES; ++i) { - const auto key = static_cast(i); - QLabel* const label = new QLabel{propertyName(key), this}; - QWidget* const field = new QWidget{this}; - this->editorwidgets[i] = field; - layout->addRow(label, field); - } - this->ui.properties->setLayout(layout); }