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:
authorLukas Matena <lukasmatena@seznam.cz>2019-02-18 16:56:19 +0300
committerLukas Matena <lukasmatena@seznam.cz>2019-02-18 16:56:19 +0300
commitcb4763bb32f0817e1dc34847d0b0d36da7a0b969 (patch)
tree3763bad8a8945c31ee12d637e9950889bb59e4d9 /src/slic3r/GUI/ImGuiWrapper.hpp
parentc63bdccb4bc326304480f748caeb70427b6a0078 (diff)
SLA gizmo - combobox items are now rendered immediately on mouse click, not after next mouse move
Diffstat (limited to 'src/slic3r/GUI/ImGuiWrapper.hpp')
-rw-r--r--src/slic3r/GUI/ImGuiWrapper.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/slic3r/GUI/ImGuiWrapper.hpp b/src/slic3r/GUI/ImGuiWrapper.hpp
index a53718162..f85b70c21 100644
--- a/src/slic3r/GUI/ImGuiWrapper.hpp
+++ b/src/slic3r/GUI/ImGuiWrapper.hpp
@@ -52,7 +52,7 @@ public:
bool input_vec3(const std::string &label, const Vec3d &value, float width, const std::string &format = "%.3f");
bool checkbox(const wxString &label, bool &value);
void text(const wxString &label);
- void combo(const wxString& label, const std::vector<wxString>& options, wxString& current_selection);
+ bool combo(const wxString& label, const std::vector<wxString>& options, wxString& current_selection);
void disabled_begin(bool disabled);
void disabled_end();