Fixed OSX-build
This commit is contained in:
parent
22a15e7e25
commit
3ccfe7f53e
2 changed files with 2 additions and 2 deletions
|
@ -44,7 +44,7 @@ ObjectManipulation::ObjectManipulation(wxWindow* parent) :
|
||||||
def.label = L("Name");
|
def.label = L("Name");
|
||||||
def.gui_type = "legend";
|
def.gui_type = "legend";
|
||||||
def.tooltip = L("Object name");
|
def.tooltip = L("Object name");
|
||||||
def.width = 200;
|
def.width = 21 * wxGetApp().em_unit();
|
||||||
def.default_value = new ConfigOptionString{ " " };
|
def.default_value = new ConfigOptionString{ " " };
|
||||||
m_og->append_single_option_line(Option(def, "object_name"));
|
m_og->append_single_option_line(Option(def, "object_name"));
|
||||||
|
|
||||||
|
|
|
@ -204,7 +204,7 @@ protected:
|
||||||
void set_type();
|
void set_type();
|
||||||
|
|
||||||
int m_em_unit;
|
int m_em_unit;
|
||||||
std::set<std::string> m_dirty_options = {};
|
std::set<std::string> m_dirty_options;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
PresetBundle* m_preset_bundle;
|
PresetBundle* m_preset_bundle;
|
||||||
|
|
Loading…
Reference in a new issue