Wed, 29 Jun 2022 16:33:49 +0300
Fixed ModelId being used to identify both models and elements, added ElementId to identify elements
#pragma once #include "src/colors.h" class ColorIndexInput : public QWidget { Q_OBJECT const ColorTable* colorTable = nullptr; class Ui_ColorIndexInput& ui; public: ColorIndexInput(QWidget *parent = nullptr); ~ColorIndexInput(); ldraw::Color selectedColor() const; void setSelectedColor(ldraw::Color color); Q_SIGNALS: void colorChanged(ldraw::Color color); private: };