We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e02f0cf commit dfe2dd5Copy full SHA for dfe2dd5
1 file changed
libControls/ToolTip.h
@@ -10,6 +10,7 @@
10
#include <utility>
11
#include <vector>
12
#include <optional>
13
+#include <unordered_map>
14
15
16
class ToolTip : public Control
@@ -40,6 +41,8 @@ class ToolTip : public Control
40
41
42
std::vector<std::pair<Control*, std::string>> mControls;
43
44
+ std::unordered_map<Control*, std::string> mWrappedText;
45
+
46
std::optional<int> mCommandedHeight{std::nullopt};
47
std::optional<int> mCommandedWidth{std::nullopt};
48
0 commit comments