mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-20 03:43:52 +00:00
Fix typo #3152
This commit is contained in:
@@ -58,7 +58,7 @@ class ConfigOptionVector : public ConfigOptionVectorBase
|
|||||||
std::vector<T> values;
|
std::vector<T> values;
|
||||||
|
|
||||||
void set(const ConfigOption &option) {
|
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;
|
if (other != NULL) this->values = other->values;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user