From 41543315b77c6220cb7c48deb3548e9995644223 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorbj=C3=B8rn=20Lindeijer?= Date: Mon, 29 Sep 2025 13:16:23 +0200 Subject: [PATCH] Rename 'Index Order' back to 'Manual' draw order (#4263) Closes #4157 --- docs/manual/objects.rst | 2 +- src/tiled/propertieswidget.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/manual/objects.rst b/docs/manual/objects.rst index a7c27ffdff..e9617a2576 100644 --- a/docs/manual/objects.rst +++ b/docs/manual/objects.rst @@ -266,7 +266,7 @@ You can also rotate the selected objects in 90-degree steps by pressing Changing Stacking Order ~~~~~~~~~~~~~~~~~~~~~~~ -If the active :ref:`Object Layer ` has its Drawing +If the active :ref:`Object Layer ` has its Draw Order property set to Manual (the default is Top Down), you can control the stacking order of the selected objects within their object layer using the following keys: diff --git a/src/tiled/propertieswidget.cpp b/src/tiled/propertieswidget.cpp index 9cc6f27659..5761529959 100644 --- a/src/tiled/propertieswidget.cpp +++ b/src/tiled/propertieswidget.cpp @@ -175,7 +175,7 @@ template<> EnumData enumData() { return {{ QCoreApplication::translate("ObjectGroup", "Top Down"), - QCoreApplication::translate("ObjectGroup", "Index Order"), + QCoreApplication::translate("ObjectGroup", "Manual"), }}; }