mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-21 05:37:52 -06:00
Fix typo #3152
This commit is contained in:
parent
4913e90e10
commit
5cfa36f36e
1 changed files with 1 additions and 1 deletions
|
@ -58,7 +58,7 @@ class ConfigOptionVector : public ConfigOptionVectorBase
|
|||
std::vector<T> values;
|
||||
|
||||
void set(const ConfigOption &option) {
|
||||
const const ConfigOptionVector<T>* other = dynamic_cast< const ConfigOptionVector<T>* >(&option);
|
||||
const ConfigOptionVector<T>* other = dynamic_cast< const ConfigOptionVector<T>* >(&option);
|
||||
if (other != NULL) this->values = other->values;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue