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

where was my mind…

This commit is contained in:
Marek Kochanowicz 2014-03-20 20:26:53 +01:00
parent ccd5e549cd
commit a692ce99fa
2 changed files with 3 additions and 3 deletions

View file

@ -834,7 +834,7 @@ namespace CSMWorld
virtual bool isUserEditable() const
{
return false;
return true;
}
};
@ -1114,7 +1114,7 @@ namespace CSMWorld
virtual bool isUserEditable() const
{
return false;
return true;
}
};

View file

@ -353,7 +353,7 @@ void CSVWorld::EditWidget::remake(int row)
QLabel* label = new QLabel(mTable->headerData (i, Qt::Horizontal).toString(), mMainWidget);
label->setSizePolicy(QSizePolicy::Fixed, QSizePolicy::Fixed);
editor->setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::Fixed);
if (!mTable->flags (mTable->index (0, i)))
if (! (mTable->flags (index) & Qt::ItemIsEditable))
{
lockedLayout->addWidget (label, locked, 0);
lockedLayout->addWidget (editor, locked, 1);