mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-16 11:17:51 -06:00
Partial work for background processing
This commit is contained in:
parent
97231327e0
commit
d9e7a50a6e
7 changed files with 164 additions and 64 deletions
|
@ -34,7 +34,9 @@ sub apply_config {
|
|||
my ($self, $config) = @_;
|
||||
|
||||
# options with single value
|
||||
my @opt_keys = grep !$Slic3r::Config::Options->{$_}{multiline}, @{$config->get_keys};
|
||||
my @opt_keys = grep $Slic3r::Config::Options->{$_}{cli} !~ /\@$/,
|
||||
grep !$Slic3r::Config::Options->{$_}{multiline},
|
||||
@{$config->get_keys};
|
||||
$self->_single_set($_, $config->serialize($_)) for @opt_keys;
|
||||
|
||||
# options with multiple values
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue