From 34d424fd64bb87894f3246d317d9c4780536befb Mon Sep 17 00:00:00 2001 From: Alaska Date: Sun, 16 Jan 2022 15:26:08 -0800 Subject: Fix T94526: Incorrect workspace ordering tooltip Fix the description for WORKSPACE_OT_reorder_to_back to say "last" in list rather than "first" See D13696 for more details. Differential Revision: https://developer.blender.org/D13696 Reviewed by Aaron Carlisle --- source/blender/editors/screen/workspace_edit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/screen/workspace_edit.c b/source/blender/editors/screen/workspace_edit.c index 125b345a1ed..6e69c82ba67 100644 --- a/source/blender/editors/screen/workspace_edit.c +++ b/source/blender/editors/screen/workspace_edit.c @@ -495,7 +495,7 @@ static void WORKSPACE_OT_reorder_to_back(wmOperatorType *ot) { /* identifiers */ ot->name = "Workspace Reorder to Back"; - ot->description = "Reorder workspace to be first in the list"; + ot->description = "Reorder workspace to be last in the list"; ot->idname = "WORKSPACE_OT_reorder_to_back"; /* api callbacks */ -- cgit v1.2.3