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:
authorJulian Eisel <eiseljulian@gmail.com>2019-09-07 17:00:19 +0300
committerYimingWu <xp8110@outlook.com>2019-09-12 04:13:02 +0300
commit95d9ec6a37f38b5cafc6613bf17104d08069110e (patch)
tree6baa035f88354b4cb6f9d587e4ff066c7d1ceea9
parentf5d493dd48d807b10436172e7b4a3ba1b3d218f5 (diff)
Fix saving images from temp Image Editor failing
Steps to reproduce were: * Ensure //Render//->//Display Mode// is //New Window// * F12 * In the opened Image Editor, Alt+S to save the image * Save the image The saving would fail silently. Issue was that wm_handler_op_context() would fail to find the correct area to activate, as the wrong window was active in context. So allow overriding this window and do so when creating the file-select handler.
-rw-r--r--source/blender/windowmanager/intern/wm_event_system.c11
-rw-r--r--source/blender/windowmanager/wm_event_system.h4
2 files changed, 13 insertions, 2 deletions
diff --git a/source/blender/windowmanager/intern/wm_event_system.c b/source/blender/windowmanager/intern/wm_event_system.c
index 828c337d64d..ff22956e723 100644
--- a/source/blender/windowmanager/intern/wm_event_system.c
+++ b/source/blender/windowmanager/intern/wm_event_system.c
@@ -1804,8 +1804,11 @@ void wm_event_free_handler(wmEventHandler *handler)
/* only set context when area/region is part of screen */
static void wm_handler_op_context(bContext *C, wmEventHandler_Op *handler, const wmEvent *event)
{
- wmWindow *win = CTX_wm_window(C);
- bScreen *screen = CTX_wm_screen(C);
+ wmWindow *win = handler->context.win ? handler->context.win : CTX_wm_window(C);
+ /* It's probably fine to always use WM_window_get_active_screen() to get the screen. But this
+ * code has been getting it through context since forever, so play safe and stick to that when
+ * possible. */
+ bScreen *screen = handler->context.win ? WM_window_get_active_screen(win) : CTX_wm_screen(C);
if (screen && handler->op) {
if (handler->context.area == NULL) {
@@ -2401,6 +2404,9 @@ static int wm_handler_fileselect_do(bContext *C,
* opening (UI_BLOCK_MOVEMOUSE_QUIT) */
wm_get_cursor_position(ctx_win, &ctx_win->eventstate->x, &ctx_win->eventstate->y);
wm->winactive = ctx_win; /* Reports use this... */
+ if (handler->context.win == win) {
+ handler->context.win = NULL;
+ }
}
else if (file_sa->full) {
ED_screen_full_prevspace(C, file_sa);
@@ -3538,6 +3544,7 @@ void WM_event_add_fileselect(bContext *C, wmOperator *op)
handler->is_fileselect = true;
handler->op = op;
+ handler->context.win = CTX_wm_window(C);
handler->context.area = CTX_wm_area(C);
handler->context.region = CTX_wm_region(C);
diff --git a/source/blender/windowmanager/wm_event_system.h b/source/blender/windowmanager/wm_event_system.h
index 53b25a80dce..c53ccda170a 100644
--- a/source/blender/windowmanager/wm_event_system.h
+++ b/source/blender/windowmanager/wm_event_system.h
@@ -116,6 +116,10 @@ typedef struct wmEventHandler_Op {
/** Store context for this handler for derived/modal handlers. */
struct {
+ /* To override the window, and hence the screen. Set for few cases only, usually window/screen
+ * can be taken from current context. */
+ struct wmWindow *win;
+
struct ScrArea *area;
struct ARegion *region;
short region_type;