Use short names as main editor delegate display in property window.

Simplifies most user action displays by omitting things like "Constant" in the list.
console-destruction
Sven Eberhardt 2016-08-27 10:12:17 -04:00
parent dba7e773ab
commit 00bc92e13f
1 changed files with 1 additions and 1 deletions

View File

@ -2589,7 +2589,7 @@ QVariant C4ConsoleQtPropListModel::data(const QModelIndex & index, int role) con
{
C4Value v;
prop->delegate->GetPropertyValue(prop->parent_value, prop->key, index.row(), &v);
return QVariant(prop->delegate->GetDisplayString(v, target_value.getObj(), false));
return QVariant(prop->delegate->GetDisplayString(v, target_value.getObj(), true));
}
}
}