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:
authorTon Roosendaal <ton@blender.org>2004-11-10 14:14:11 +0300
committerTon Roosendaal <ton@blender.org>2004-11-10 14:14:11 +0300
commit46326b62b553f39e3d691ebf611eb3544d6b6f52 (patch)
tree13858c4b12713e7c5611f10fb5dcb07cbb26a8cd /source/blender/src/drawtext.c
parenta534361b3e41886265fbad6d649f56d8ded021ec (diff)
1) Fix for bugs #1735 #1759
Rotate edges was unfinished still, and not supposed to work on large selections. Code cleaned up some, and restricted to work on a single selected edge, or two adjacent selected faces. Also changed menu description, and give error() on wrong selection. 2) Fix for undo mixup in texteditor Global hotkey list now passes on ctrl+z (global undo) to local queue in textwindow. (Also for ctrl+y). Scriptwindow also doesn't accept global undo key.
Diffstat (limited to 'source/blender/src/drawtext.c')
-rw-r--r--source/blender/src/drawtext.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/drawtext.c b/source/blender/src/drawtext.c
index 46a8492e8a5..ef5656c7f1f 100644
--- a/source/blender/src/drawtext.c
+++ b/source/blender/src/drawtext.c
@@ -1332,7 +1332,7 @@ void winqreadtextspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
}
break;
case ZKEY:
- if (G.qual & LR_ALTKEY || G.qual & LR_CTRLKEY) {
+ if (G.qual & (LR_ALTKEY|LR_CTRLKEY|LR_COMMANDKEY)) {
if (G.qual & LR_SHIFTKEY) {
txt_do_redo(text);
} else {