mirror of
https://git.mirrors.martin98.com/https://github.com/slic3r/Slic3r.git
synced 2025-08-18 19:15:56 +08:00
Added apply() callthrough method to allow Slic3r::ConfigBase configs to be added to the local DynamicPrintConfig.
This commit is contained in:
parent
bdb2457a57
commit
846e46a130
@ -113,7 +113,11 @@ public:
|
|||||||
void apply(const config_ptr& other) { _config.apply(other->config()); }
|
void apply(const config_ptr& other) { _config.apply(other->config()); }
|
||||||
void apply(const Slic3r::Config& other) { _config.apply(other.config()); }
|
void apply(const Slic3r::Config& other) { _config.apply(other.config()); }
|
||||||
|
|
||||||
|
/// Allow other configs to be applied to this one.
|
||||||
|
void apply(const Slic3r::ConfigBase& other) { _config.apply(other); }
|
||||||
|
|
||||||
|
|
||||||
|
/// Do not use; prefer static factory methods instead.
|
||||||
Config();
|
Config();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user