summaryrefslogtreecommitdiffstats
path: root/src/Authoring/Studio/Application/DataInputListDlg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Authoring/Studio/Application/DataInputListDlg.cpp')
-rw-r--r--src/Authoring/Studio/Application/DataInputListDlg.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Authoring/Studio/Application/DataInputListDlg.cpp b/src/Authoring/Studio/Application/DataInputListDlg.cpp
index 8ef2a895..a80e8fce 100644
--- a/src/Authoring/Studio/Application/DataInputListDlg.cpp
+++ b/src/Authoring/Studio/Application/DataInputListDlg.cpp
@@ -164,9 +164,11 @@ void CDataInputListDlg::updateContents()
dataInput.append(new QStandardItem(tr("String")));
} else if (dataInputType == DataTypeFloat) {
dataInput.append(new QStandardItem(tr("Float")));
+#ifdef DATAINPUT_EVALUATOR_ENABLED
} else if (dataInputType == DataTypeEvaluator) {
dataInput.append(new QStandardItem(tr("Evaluator")));
dataInput.append(new QStandardItem(m_dataInputs.at(i)->valueString));
+#endif
} else if (dataInputType == DataTypeBoolean) {
dataInput.append(new QStandardItem(tr("Boolean")));
} else if (dataInputType == DataTypeVector3) {