Restrict temp/Maximized/Fullscreen window editing in a few more places, and disable the ActionZone corners on Maximized areas since they don't do anything.
Details
Details
Diff Detail
Diff Detail
- Repository
- rB Blender
- Branch
- master
- Build Status
Buildable 22311 Build 22311: arc lint + arc unit
Event Timeline
Comment Actions
Small request, but generally this is fine.
| source/blender/editors/interface/interface_templates.c | ||
|---|---|---|
| 109 | Better to put this in a function: bool ED_screen_editable(const bScreen *screen) { reteurn (screen->state == SCREENNORMAL) && !screen->temp; } Avoids duplicating this check but also documents the intended meaning of the check via the function name. | |