From 423d9086e64e5f9bfb175f95e17ca426567af17d Mon Sep 17 00:00:00 2001 From: Sebastian Parborg Date: Tue, 16 Apr 2019 13:12:28 +0200 Subject: Fix T63429: Random deselect function lost Add back the ability to choose the select operation for random select. Now we allow the operator to specify if the select operation should be visible in the GUI or not. Reviewed By: Brecht Differential Revision: http://developer.blender.org/D4665 --- source/blender/editors/space_info/info_report.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/blender/editors/space_info/info_report.c') diff --git a/source/blender/editors/space_info/info_report.c b/source/blender/editors/space_info/info_report.c index a8f5d9b9b76..e4202483574 100644 --- a/source/blender/editors/space_info/info_report.c +++ b/source/blender/editors/space_info/info_report.c @@ -209,7 +209,7 @@ void INFO_OT_select_all(wmOperatorType *ot) ot->exec = report_select_all_exec; /* properties */ - WM_operator_properties_select_action(ot, SEL_SELECT); + WM_operator_properties_select_action(ot, SEL_SELECT, true); } /* box_select operator */ -- cgit v1.2.3