Added missed include
This commit is contained in:
parent
3eacb0a216
commit
3bc6c29b7a
2 changed files with 2 additions and 3 deletions
|
@ -1886,8 +1886,7 @@ void ObjectList::part_selection_changed()
|
||||||
|
|
||||||
if (item) {
|
if (item) {
|
||||||
wxGetApp().obj_manipul()->get_og()->set_value("object_name", m_objects_model->GetName(item));
|
wxGetApp().obj_manipul()->get_og()->set_value("object_name", m_objects_model->GetName(item));
|
||||||
const wxString tooltip = get_mesh_errors_list(obj_idx, volume_id);
|
wxGetApp().obj_manipul()->update_warning_icon_state(get_mesh_errors_list(obj_idx, volume_id));
|
||||||
wxGetApp().obj_manipul()->update_warning_icon_state(tooltip);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
#define slic3r_GUI_ObjectManipulation_hpp_
|
#define slic3r_GUI_ObjectManipulation_hpp_
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <wx/string.h>
|
||||||
|
|
||||||
#include "GUI_ObjectSettings.hpp"
|
#include "GUI_ObjectSettings.hpp"
|
||||||
#include "GLCanvas3D.hpp"
|
#include "GLCanvas3D.hpp"
|
||||||
|
@ -9,7 +10,6 @@
|
||||||
class wxStaticText;
|
class wxStaticText;
|
||||||
class LockButton;
|
class LockButton;
|
||||||
class wxStaticBitmap;
|
class wxStaticBitmap;
|
||||||
class wxString;
|
|
||||||
|
|
||||||
namespace Slic3r {
|
namespace Slic3r {
|
||||||
namespace GUI {
|
namespace GUI {
|
||||||
|
|
Loading…
Reference in a new issue