1
0
Fork 1
mirror of https://github.com/TES3MP/openmw-tes3mp.git synced 2025-01-21 09:53:50 +00:00

changing the enumdelegate seteditordata

This commit is contained in:
Marek Kochanowicz 2014-03-08 16:54:05 +01:00
parent 9612c6a6fd
commit 1f1774b5e1

View file

@ -60,7 +60,14 @@ void CSVWorld::EnumDelegate::setEditorData (QWidget *editor, const QModelIndex&
{
if (QComboBox *comboBox = dynamic_cast<QComboBox *> (editor))
{
int value = index.data (Qt::EditRole).toInt();
QVariant data = index.data (Qt::EditRole);
if (!data.isValid())
{
data = index.data (Qt::DisplayRole);
}
int value = data.toInt();
std::size_t size = mValues.size();