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:
authorStephen Swaney <sswaney@centurytel.net>2005-12-12 21:35:15 +0300
committerStephen Swaney <sswaney@centurytel.net>2005-12-12 21:35:15 +0300
commitd32b100464d3d1778a76ae00354ed5885acd574c (patch)
tree0d40862c60091b86b2fc6d274569be6340a377a4 /source/blender/blenkernel/BKE_text.h
parentc452e8672cbf374ecdf55d76653424b27af00582 (diff)
bugfix: #3420 Indent/Unindent in text editor not undoable
contributed by Mr. TextEditor - themyers. Thanks!
Diffstat (limited to 'source/blender/blenkernel/BKE_text.h')
-rw-r--r--source/blender/blenkernel/BKE_text.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/source/blender/blenkernel/BKE_text.h b/source/blender/blenkernel/BKE_text.h
index c76d6c9231b..447a94dd487 100644
--- a/source/blender/blenkernel/BKE_text.h
+++ b/source/blender/blenkernel/BKE_text.h
@@ -131,6 +131,11 @@ int setcurr_tab (struct Text *text);
/* Misc */
#define UNDO_SWAP 031 /* Swap cursors */
+#define UNDO_INDENT 032
+#define UNDO_UNINDENT 033
+#define UNDO_COMMENT 034
+#define UNDO_UNCOMMENT 035
+
#ifdef __cplusplus
}
#endif