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:
authorJoshua Leung <aligorith@gmail.com>2006-12-11 11:59:05 +0300
committerJoshua Leung <aligorith@gmail.com>2006-12-11 11:59:05 +0300
commit66bbe3c737c20c4e1aa2bcbcbc8f8be507e4c390 (patch)
tree30122c063e91178998647ec5c9b7c2f2786889ab
parent9c3cacd283008c9ac698d8f8f444c733b0fe61ac (diff)
Added missing menu entry for marker editing - Select/Deselect All Markers
-rw-r--r--source/blender/src/header_ipo.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/source/blender/src/header_ipo.c b/source/blender/src/header_ipo.c
index ec16530410e..f3cd38ad45d 100644
--- a/source/blender/src/header_ipo.c
+++ b/source/blender/src/header_ipo.c
@@ -789,6 +789,14 @@ static void do_ipo_selectmenu(void *arg, int event)
case 2:
borderselect_markers();
break;
+ case 3:
+ deselect_markers(1, 0);
+ allqueue(REDRAWTIME, 0);
+ allqueue(REDRAWIPO, 0);
+ allqueue(REDRAWACTION, 0);
+ allqueue(REDRAWNLA, 0);
+ allqueue(REDRAWSOUND, 0);
+ break;
}
}
@@ -806,6 +814,7 @@ static uiBlock *ipo_selectmenu(void *arg_unused)
uiDefBut(block, SEPR, 0, "", 0, yco-=6, menuwidth, 6, NULL, 0.0, 0.0, 0, 0, "");
uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Select/Deselect All|A", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 1, "");
+ uiDefIconTextBut(block, BUTM, 1, ICON_BLANK1, "Select/Deselect All Markers|Ctrl A", 0, yco-=20, menuwidth, 19, NULL, 0.0, 0.0, 0, 3, "");
if(curarea->headertype==HEADERTOP) {
uiBlockSetDirection(block, UI_DOWN);