mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-04 05:36:41 +00:00
Editor: Remove overridden configureCreateCommand
StartScriptCreator was incorrectly overriding configureCreateCommand. This caused issues trying to edit an uneditable column while adding a new record.
This commit is contained in:
parent
e6863c8f79
commit
547d783eac
2 changed files with 0 additions and 13 deletions
apps/opencs/view/world
|
@ -24,15 +24,6 @@ CSMWorld::IdTable& CSVWorld::StartScriptCreator::getStartScriptsTable() const
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
void CSVWorld::StartScriptCreator::configureCreateCommand(CSMWorld::CreateCommand& command) const
|
|
||||||
{
|
|
||||||
CSMWorld::IdTable& table = getStartScriptsTable();
|
|
||||||
int column = table.findColumnIndex(CSMWorld::Columns::ColumnId_Id);
|
|
||||||
|
|
||||||
// Set script ID to be added to start scripts table.
|
|
||||||
command.addValue(column, mScript->text());
|
|
||||||
}
|
|
||||||
|
|
||||||
CSVWorld::StartScriptCreator::StartScriptCreator(
|
CSVWorld::StartScriptCreator::StartScriptCreator(
|
||||||
CSMWorld::Data &data,
|
CSMWorld::Data &data,
|
||||||
QUndoStack &undoStack,
|
QUndoStack &undoStack,
|
||||||
|
|
|
@ -31,10 +31,6 @@ namespace CSVWorld
|
||||||
/// \return reference to table containing start scripts.
|
/// \return reference to table containing start scripts.
|
||||||
CSMWorld::IdTable& getStartScriptsTable() const;
|
CSMWorld::IdTable& getStartScriptsTable() const;
|
||||||
|
|
||||||
/// \brief Add user input to command for creating start script.
|
|
||||||
/// \param command Creation command to configure.
|
|
||||||
virtual void configureCreateCommand(CSMWorld::CreateCommand& command) const;
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
|
|
||||||
StartScriptCreator(
|
StartScriptCreator(
|
||||||
|
|
Loading…
Reference in a new issue