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>2019-03-08 03:55:52 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-03-08 03:55:52 +0300
commita3906edcaf6585fd37d752b9d6d9177d9dd562f6 (patch)
tree0b040da818d2613d53ce87593ea1a413584fdcd1 /source/blender/editors/space_info/info_report.c
parente9373495a91794ca7ee504f7dfe5d0dff03934c2 (diff)
Fix: Info window select all toggle broken
D4477 by @Poulpator
Diffstat (limited to 'source/blender/editors/space_info/info_report.c')
-rw-r--r--source/blender/editors/space_info/info_report.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_info/info_report.c b/source/blender/editors/space_info/info_report.c
index 89aed77ce9d..73c36f64cb5 100644
--- a/source/blender/editors/space_info/info_report.c
+++ b/source/blender/editors/space_info/info_report.c
@@ -164,6 +164,7 @@ static int report_select_all_exec(bContext *C, wmOperator *op)
int action = RNA_enum_get(op->ptr, "action");
if (action == SEL_TOGGLE) {
+ action = SEL_SELECT;
for (Report *report = reports->list.last; report; report = report->prev) {
if ((report->type & report_mask) && (report->flag & SELECT)) {
action = SEL_DESELECT;