Fri, 01 Jul 2022 16:46:43 +0300
Fix right click to delete not really working properly
Instead of removing the point that had been added, it would remove
the point that is being drawn, which would cause it to overwrite the
previous point using the new point, causing a bit of a delay
178 | 1 | #pragma once |
264
76a025db4948
Convert all includes to be relative to project root directory. Files that cannot be found in this manner use angle brackets.
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
263
diff
changeset
|
2 | #include "src/colors.h" |
178 | 3 | |
4 | class ColorIndexInput : public QWidget | |
5 | { | |
6 | Q_OBJECT | |
258
fe094d0687ad
Add widgets to object editor
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
214
diff
changeset
|
7 | const ColorTable* colorTable = nullptr; |
fe094d0687ad
Add widgets to object editor
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
214
diff
changeset
|
8 | class Ui_ColorIndexInput& ui; |
178 | 9 | public: |
258
fe094d0687ad
Add widgets to object editor
Teemu Piippo <teemu.s.piippo@gmail.com>
parents:
214
diff
changeset
|
10 | ColorIndexInput(QWidget *parent = nullptr); |
178 | 11 | ~ColorIndexInput(); |
12 | ldraw::Color selectedColor() const; | |
13 | void setSelectedColor(ldraw::Color color); | |
14 | Q_SIGNALS: | |
15 | void colorChanged(ldraw::Color color); | |
16 | private: | |
17 | }; |