value: removed color from vec list

This made sense in theory, but in practice this breaks things and has no benefits.

Fixes #1675
This commit is contained in:
itsmattkc
2021-07-18 11:07:14 -07:00
parent 97c14dba70
commit f37a9e7cec
+1 -1
View File
@@ -35,7 +35,7 @@ namespace olive {
const QVector<NodeValue::Type> NodeValue::kNumber = {kFloat, kInt, kRational};
const QVector<NodeValue::Type> NodeValue::kBuffer = {kTexture, kSamples};
const QVector<NodeValue::Type> NodeValue::kVector = {kVec2, kVec3, kVec4, kColor};
const QVector<NodeValue::Type> NodeValue::kVector = {kVec2, kVec3, kVec4};
QString NodeValue::ValueToString(Type data_type, const QVariant &value, bool value_is_a_key_track)
{