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

github.com/prusa3d/PrusaSlicer.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrico Turri <enricoturri@seznam.cz>2019-07-19 16:36:55 +0300
committerEnrico Turri <enricoturri@seznam.cz>2019-07-19 16:36:55 +0300
commit81d3669a2575231041ade3387cafd9928cf458e8 (patch)
tree56fe7635f4fa061b39aa536e26037d876ee96f6a /src/slic3r/GUI/GLToolbar.cpp
parent2de6d95322430ba2835495f18dde302b3128001c (diff)
Undo/Redo buttons moved into their own toolbar
Diffstat (limited to 'src/slic3r/GUI/GLToolbar.cpp')
-rw-r--r--src/slic3r/GUI/GLToolbar.cpp9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/slic3r/GUI/GLToolbar.cpp b/src/slic3r/GUI/GLToolbar.cpp
index 0002eda2d..cdd80ed17 100644
--- a/src/slic3r/GUI/GLToolbar.cpp
+++ b/src/slic3r/GUI/GLToolbar.cpp
@@ -403,6 +403,9 @@ void GLToolbar::render(const GLCanvas3D& parent) const
bool GLToolbar::on_mouse(wxMouseEvent& evt, GLCanvas3D& parent)
{
+ if (!m_enabled)
+ return false;
+
Vec2d mouse_pos((double)evt.GetX(), (double)evt.GetY());
bool processed = false;
@@ -1009,9 +1012,6 @@ void GLToolbar::render_horizontal(const GLCanvas3D& parent) const
float bg_right = right;
float bg_top = top;
float bg_bottom = bottom;
- float bg_width = right - left;
- float bg_height = top - bottom;
- float bg_min_size = std::min(bg_width, bg_height);
float bg_uv_i_left = (float)m_background_texture.metadata.left * inv_bg_tex_width;
float bg_uv_i_right = 1.0f - (float)m_background_texture.metadata.right * inv_bg_tex_width;
@@ -1139,9 +1139,6 @@ void GLToolbar::render_vertical(const GLCanvas3D& parent) const
float bg_right = right;
float bg_top = top;
float bg_bottom = bottom;
- float bg_width = right - left;
- float bg_height = top - bottom;
- float bg_min_size = std::min(bg_width, bg_height);
float bg_uv_i_left = (float)m_background_texture.metadata.left * inv_bg_tex_width;
float bg_uv_i_right = 1.0f - (float)m_background_texture.metadata.right * inv_bg_tex_width;