Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/supermerill/SuperSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/slic3r/GUI/Field.hpp')
-rw-r--r--src/slic3r/GUI/Field.hpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/slic3r/GUI/Field.hpp b/src/slic3r/GUI/Field.hpp
index b963dd62c..3c361f94b 100644
--- a/src/slic3r/GUI/Field.hpp
+++ b/src/slic3r/GUI/Field.hpp
@@ -45,10 +45,11 @@ class RichTooltipTimer : public wxTimer
Field* m_field;
public:
bool m_is_rich_tooltip_ready = false;
- wxWindow* m_current_rich_tooltip = nullptr;
+ wxWindow* m_current_rich_tooltip = nullptr;
+ wxWindow* m_previous_focus = nullptr;
wxString m_value;
- wxWindow* m_window2 = nullptr; //for point
- wxWindow* m_current_window = nullptr; //for point
+ wxWindow* m_window2 = nullptr; //for point
+ wxWindow* m_current_window = nullptr; //for point
RichTooltipTimer(Field* field) : m_field(field) {};
void Notify() override;