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:
authorSebastian Parborg <darkdefende@gmail.com>2019-04-16 14:12:28 +0300
committerSebastian Parborg <darkdefende@gmail.com>2019-04-16 14:16:04 +0300
commit423d9086e64e5f9bfb175f95e17ca426567af17d (patch)
tree658799c63b90da2a3b95425b7b3458758bdff308 /source/blender/editors/space_info/info_report.c
parent2e3bc99590d13dc5a1ae2f9f574371f99b0677d6 (diff)
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
Diffstat (limited to 'source/blender/editors/space_info/info_report.c')
-rw-r--r--source/blender/editors/space_info/info_report.c2
1 files changed, 1 insertions, 1 deletions
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 */