mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-04 04:24:04 -06:00
Fix of the previous commit: Fix compilation on Linux.
This commit is contained in:
parent
473233019c
commit
8089631f10
2 changed files with 3 additions and 3 deletions
|
@ -20,7 +20,7 @@ public:
|
|||
TYPE_PRINTER,
|
||||
};
|
||||
|
||||
Preset(Type type, const std::string &name, bool is_default = false) : type(type), name(name), is_default(is_default) {}
|
||||
Preset(Type type, const std::string &name, bool is_default = false) : type(type), is_default(is_default), name(name) {}
|
||||
|
||||
Type type = TYPE_INVALID;
|
||||
|
||||
|
@ -54,7 +54,7 @@ public:
|
|||
DynamicPrintConfig& load(const std::vector<std::string> &keys);
|
||||
|
||||
// Set the is_dirty flag if the provided config is different from the active one.
|
||||
bool set_dirty(const DynamicPrintConfig &config) { this->is_dirty = ! this->config.diff(config).empty(); }
|
||||
void set_dirty(const DynamicPrintConfig &config) { this->is_dirty = ! this->config.diff(config).empty(); }
|
||||
void reset_dirty() { this->is_dirty = false; }
|
||||
bool enable_compatible(const std::string &active_printer);
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue