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:
authorCampbell Barton <ideasman42@gmail.com>2008-05-09 12:01:27 +0400
committerCampbell Barton <ideasman42@gmail.com>2008-05-09 12:01:27 +0400
commit55cbcd125dd9d3cf29f1a0bcf6ac8ee194785e3f (patch)
tree8b5e7b0e1b9303896134d126c1d8818005ccc850 /source/blender/src/space.c
parent9fb7381d2e19a4bd3c61ad4a6bae074d5b1b53a4 (diff)
[#10998] Sequencer: some new features missing from the menu items
also added Shift+H for muting unselected and fixed a problem with marker selection not working in the sequencer (shift+rmb logic was reversed)
Diffstat (limited to 'source/blender/src/space.c')
-rw-r--r--source/blender/src/space.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index 63836101d49..751cad1029d 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -5059,8 +5059,10 @@ static void winqreadseqspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
case HKEY: /* hide==mute? - not that nice but MKey us used for meta :/ */
if((G.qual==0)) {
seq_mute_sel(1);
- } else if((G.qual==LR_ALTKEY)) {
+ } else if(G.qual==LR_ALTKEY) {
seq_mute_sel(0);
+ } else if(G.qual==LR_SHIFTKEY) {
+ seq_mute_sel(-1);
}
break;
case XKEY: