aboutsummaryrefslogtreecommitdiff
path: root/mapman/src/painter.hpp
diff options
context:
space:
mode:
authorGravatar Chris Xiong <chirs241097@gmail.com> 2024-03-13 01:20:34 -0400
committerGravatar Chris Xiong <chirs241097@gmail.com> 2024-03-13 01:20:34 -0400
commit3a226954ba6b9bd70892ef7247226eaf30d216a4 (patch)
tree87aa051bc6cdf0a2c3031b201cb51701ab60a586 /mapman/src/painter.hpp
parent34835275649b78c80a8e69b71fb9b990fe654d43 (diff)
downloadmeteor-trashy-addon-3a226954ba6b9bd70892ef7247226eaf30d216a4.tar.xz
Stop rendering its label once a slot has a map.
Diffstat (limited to 'mapman/src/painter.hpp')
-rw-r--r--mapman/src/painter.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/mapman/src/painter.hpp b/mapman/src/painter.hpp
index 489a87b..f7822a9 100644
--- a/mapman/src/painter.hpp
+++ b/mapman/src/painter.hpp
@@ -1,6 +1,7 @@
#ifndef MAPPAINTER_HPP
#define MAPPAINTER_HPP
+#include <utility>
#include <vector>
#include <QObject>
@@ -29,6 +30,7 @@ private:
int hc;
int vc;
std::vector<QGraphicsItem*> slices;
+ std::vector<std::tuple<QGraphicsItem*, QGraphicsItem*>> bgspr;
};
#endif