mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-08 15:37:30 -06:00
FIX: restore config value of Bools type
Change-Id: I6ea8b44d71176fe75238e0207addceb8ddd1e73f
This commit is contained in:
parent
d2eb526ea3
commit
530c2287c8
1 changed files with 1 additions and 1 deletions
|
@ -1115,7 +1115,7 @@ boost::any ConfigOptionsGroup::get_config_value2(const DynamicPrintConfig& confi
|
|||
ret = config.opt_bool(opt_key);
|
||||
break;
|
||||
case coBools:
|
||||
ret = config.opt_bool(opt_key, idx);
|
||||
ret = static_cast<unsigned char>(config.opt_bool(opt_key, idx));
|
||||
break;
|
||||
case coInt:
|
||||
ret = config.opt_int(opt_key);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue