[Bf-blender-cvs] [34d424fd64b] master: Fix T94526: Incorrect workspace ordering tooltip

Alaska noreply at git.blender.org
Mon Jan 17 00:27:04 CET 2022


Commit: 34d424fd64bb87894f3246d317d9c4780536befb
Author: Alaska
Date:   Sun Jan 16 15:26:08 2022 -0800
Branches: master
https://developer.blender.org/rB34d424fd64bb87894f3246d317d9c4780536befb

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

===================================================================

M	source/blender/editors/screen/workspace_edit.c

===================================================================

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 */



More information about the Bf-blender-cvs mailing list