Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <bastien@blender.org>2021-09-13 13:40:10 +0300
committerBastien Montagne <bastien@blender.org>2021-09-13 13:40:37 +0300
commit410dc76177af4258f3813d623c3cdaaddf1f0300 (patch)
treec139b5df30bf90512de5abbaadcc2d1ff6600d46 /source/blender/editors/undo
parentf6ebbfe7dee663c4d5587e386882df42a24ffa93 (diff)
Various UI messages fixes and updates.
Diffstat (limited to 'source/blender/editors/undo')
-rw-r--r--source/blender/editors/undo/ed_undo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/undo/ed_undo.c b/source/blender/editors/undo/ed_undo.c
index 84d5d3b9aae..22064e04e86 100644
--- a/source/blender/editors/undo/ed_undo.c
+++ b/source/blender/editors/undo/ed_undo.c
@@ -578,8 +578,8 @@ static bool ed_undo_is_init_poll(bContext *C)
* it will be part of the exception when attempting to call undo in background mode. */
CTX_wm_operator_poll_msg_set(
C,
- "Undo disabled at startup in background-mode. "
- "Call `ed.undo_push()` to explicitly initialize the undo-system.");
+ "Undo disabled at startup in background-mode "
+ "(call `ed.undo_push()` to explicitly initialize the undo-system)");
return false;
}
return true;