From a3906edcaf6585fd37d752b9d6d9177d9dd562f6 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 8 Mar 2019 11:55:52 +1100 Subject: Fix: Info window select all toggle broken D4477 by @Poulpator --- source/blender/editors/space_info/info_report.c | 1 + 1 file changed, 1 insertion(+) (limited to 'source/blender/editors/space_info') 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; -- cgit v1.2.3