mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-09 07:56:24 -06:00
FIX:romove font style preview
Change-Id: I1e8f2ffd94db967f17fa561fd5c56a20f718631b
This commit is contained in:
parent
4ea3d16fcc
commit
1da9bfcc13
5 changed files with 76 additions and 75 deletions
|
@ -1485,9 +1485,9 @@ bool GLGizmosManager::activate_gizmo(EType type)
|
|||
GLGizmoBase* new_gizmo = type == Undefined ? nullptr : m_gizmos[type].get();
|
||||
|
||||
if (old_gizmo) {
|
||||
if (m_current == Text) {
|
||||
wxGetApp().imgui()->destroy_fonts_texture();
|
||||
}
|
||||
//if (m_current == Text) {
|
||||
// wxGetApp().imgui()->destroy_fonts_texture();
|
||||
//}
|
||||
old_gizmo->set_state(GLGizmoBase::Off);
|
||||
if (old_gizmo->get_state() != GLGizmoBase::Off)
|
||||
return false; // gizmo refused to be turned off, do nothing.
|
||||
|
@ -1508,9 +1508,9 @@ bool GLGizmosManager::activate_gizmo(EType type)
|
|||
m_current = type;
|
||||
|
||||
if (new_gizmo) {
|
||||
if (m_current == Text) {
|
||||
wxGetApp().imgui()->load_fonts_texture();
|
||||
}
|
||||
//if (m_current == Text) {
|
||||
// wxGetApp().imgui()->load_fonts_texture();
|
||||
//}
|
||||
new_gizmo->set_state(GLGizmoBase::On);
|
||||
}
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue