Fix #107789: Prevent area maximizing when dragging #107803

Merged
YimingWu merged 3 commits from ChengduLittleA/blender:drag_prevent_maximize into main 2023-06-07 06:21:08 +02:00
Member

Calling screen maximize while dragging could lead to UI layout change
which affects context, this lead to crashes in the icon drawing and
selection code. This patch prevents maximize operator from running if
dragging is in progress.

Might need to look into why drag->imb->rect is None immediately after
calling maximize, we might want it to work since it's sometimes
more convenient to drag then put into a big recieving box. But since
wmDropBox is predetermined, this can be a somewhat problematic.

Calling screen maximize while dragging could lead to UI layout change which affects context, this lead to crashes in the icon drawing and selection code. This patch prevents maximize operator from running if dragging is in progress. Might need to look into why `drag->imb->rect` is None immediately after calling maximize, we might want it to work since it's sometimes more convenient to drag then put into a big recieving box. But since `wmDropBox` is predetermined, this can be a somewhat problematic.
YimingWu added the
Module
User Interface
label 2023-05-10 08:22:01 +02:00
Philipp Oeser added this to the User Interface project 2023-05-10 11:27:26 +02:00
Member

Seems reasonable. Although I'd probably use BLI_listbase_is_empty(&wm->drags) though.

Seems reasonable. Although I'd probably use `BLI_listbase_is_empty(&wm->drags)` though.
Author
Member

Good point. Fixed.

Good point. Fixed.
Harley Acheson reviewed 2023-06-06 22:22:58 +02:00
@ -3340,11 +3340,14 @@ static bool screen_maximize_area_poll(bContext *C)
const wmWindow *win = CTX_wm_window(C);
const bScreen *screen = CTX_wm_screen(C);
const ScrArea *area = CTX_wm_area(C);
wmWindowManager *wm = CTX_wm_manager(C);
Member

should be const like those above

should be const like those above
ChengduLittleA marked this conversation as resolved
Harley Acheson reviewed 2023-06-06 22:24:17 +02:00
@ -3347,1 +3348,3 @@
!WM_window_is_temp_screen(win);
!WM_window_is_temp_screen(win) &&
/* Don't maximize when dragging. */
!BLI_listbase_is_empty(&wm->drags);
Member

This "Not" is incorrect. This would only allow maximizing if you ARE dragging. You'll need to remove that "!" to do what you want.

This "Not" is incorrect. This would only allow maximizing if you ARE dragging. You'll need to remove that "!" to do what you want.
ChengduLittleA marked this conversation as resolved
Harley Acheson requested review from Harley Acheson 2023-06-06 22:24:31 +02:00
YimingWu force-pushed drag_prevent_maximize from 5c67394d7b to 2904f4e02e 2023-06-07 05:54:25 +02:00 Compare
Harley Acheson approved these changes 2023-06-07 06:07:43 +02:00
YimingWu merged commit 0a891184fa into main 2023-06-07 06:21:08 +02:00
YimingWu deleted branch drag_prevent_maximize 2023-06-07 06:21:11 +02:00
Sign in to join this conversation.
No reviewers
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No project
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#107803
No description provided.