Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added property names to undo commands #4013

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions src/tiled/changeproperties.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ ChangeClassName::ChangeClassName(Document *document,
QUndoCommand *parent)
: ChangeValue(document, objects, className, parent)
{
setText(QCoreApplication::translate("Undo Commands", "Change Type"));
setText(QCoreApplication::translate("Undo Commands", "Change Class"));
}

void ChangeClassName::undo()
Expand Down Expand Up @@ -146,10 +146,12 @@ SetProperty::SetProperty(Document *document,
mProperties.append(prop);
}

const auto fullName = mPath.join(QLatin1Char('.'));

if (mObjects.size() > 1 || mObjects.at(0)->hasProperty(mName))
setText(QCoreApplication::translate("Undo Commands", "Set Property"));
setText(QCoreApplication::translate("Undo Commands", "Set Property '%1'").arg(fullName));
else
setText(QCoreApplication::translate("Undo Commands", "Add Property"));
setText(QCoreApplication::translate("Undo Commands", "Add Property '%1'").arg(fullName));
}

void SetProperty::undo()
Expand Down Expand Up @@ -201,7 +203,7 @@ RemoveProperty::RemoveProperty(Document *document,
for (Object *obj : objects)
mPreviousValues.append(obj->property(mName));

setText(QCoreApplication::translate("Undo Commands", "Remove Property"));
setText(QCoreApplication::translate("Undo Commands", "Remove Property '%1'").arg(name));
}

void RemoveProperty::undo()
Expand Down