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:
authorHarley Acheson <harley.acheson@gmail.com>2022-03-09 00:54:19 +0300
committerHarley Acheson <harley.acheson@gmail.com>2022-03-09 00:57:35 +0300
commit353376c783390a158c0a3cedf9887a4df06c7cf1 (patch)
tree267696a6e72fe53cf8db2d6504c6b9bb41866ed9 /source/blender/editors/screen/screen_ops.c
parenteb326c7b402e4914e9a619b899a388be7668255b (diff)
Fix T92331: Duplicated Window Should Not Be Modal
Operator area_dupli_invoke should not create modal windows. See D14253 for details. Differential Revision: https://developer.blender.org/D14253 Reviewed by Brecht Van Lommel
Diffstat (limited to 'source/blender/editors/screen/screen_ops.c')
-rw-r--r--source/blender/editors/screen/screen_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/screen/screen_ops.c b/source/blender/editors/screen/screen_ops.c
index ee3bc3cba76..9343f4a3b34 100644
--- a/source/blender/editors/screen/screen_ops.c
+++ b/source/blender/editors/screen/screen_ops.c
@@ -1421,7 +1421,7 @@ static int area_dupli_invoke(bContext *C, wmOperator *op, const wmEvent *event)
area->winy,
SPACE_EMPTY,
false,
- true,
+ false,
false,
WIN_ALIGN_ABSOLUTE);