Blender development todo list -- User Interface #55364

Closed
opened 2018-06-07 12:52:02 +02:00 by Philipp Oeser · 11 comments
Member

NOTE: this is a direct dump of https://wiki.blender.org/index.php/Dev:Source/Development/Todo/UserInterface (without cherrypicking the [still] valid items)

General 2.5 targets

  • Support in operators for 'menu names', remove all custom names in UI scripts.
  • Selecting Fonts and "Styles" for drawing UI (font sizes for panel headers etc) has to be implemented still

General todo items

  • Consistent method for generating/appending/reordering/removing customizable lists of tools (tool shelf, custom menus, etc). If this can't be done quickly, then remove customization options for tool shelf and leave for a later release.
  • Editing multiple datablocks at once.
  • Saving thumbnails currently saves the 3D view, which isn't useful for blend files primarily using the sequencer: See #34112
  • Reduce memory usage of font caches for utf8 fonts (#34627)
  • Search function: Unicode is case sensitive when it shouldn't be (#43221)
  • Support font rendering using sub-pixel bitmaps. Should fix jagged drawing of some fonts without anti-aliasing enabled (#53041).

Properties Editor

  • Undo looses buttons stored path (#40046)
  • Default property units is not always what users expect it to be #40312

File Path handling

  • Implement generic system to handle cross platform paths, relative paths, network drives, shortcuts, stream input files, etc.
  • Path editing and commands in Blender now still leave 'trails' (old strings readable). (#35712)

Issues per category

Mouse Support

  • X11 Isn't using true grabbing since it can lock the OS, see #39144
  • Continuous grab doesn't work when the Blender window goes outside of the screen, see #50005

Tablet Support

  • Fix conflicts with tablets in absolute mode and Continuous Grab enabled (i.e. by ignoring Continuous grab if events come from tablet), see #43106

NDOF / 3D Mouse

  • Note: default usage keeps view pivot the same, so you can use it for modeling. Options for panning or free fly mode are with modifier keys. You can set own preferences via the User Preferences keymap editor.
  • The Space-Navigator software on windows seems to be causing problems #42694

Keymap Editing

  • Check for key conflicts. (operator wm.keyconfig_test already does that but only prints result to console due to high number of false positives)
  • Check for key conflicts when assigning a key, see #35588
  • Allow Mouse Events to work with Custom Modifier Key #32641, #34822
  • Keymap conversion is not always correct across Blender versions #44115
  • Blender hotkey priority is defined by order but hotkey editor does not allow for order editing #53710

File Browser

  • Create button types for File Browser buttons (mostly hardcoded, atm)

Blender Window Manager

Menu

  • Resolve the case when the mouse isn't able to select the last used item in a menu see: #32542
  • Some menus are too wide to draw reliably for narrow windows. #34500
  • Add assign shortcuts option to Menus. #51095

Search menu

  • Search (space) doesn't show hotkeys for operators (like Mark Seam) that in a collection, like CTRL+E. Unsure what best solution would be, but definitely worth investigating.
  • ID search menu has got fixed width which isn't convenient to choosing long datablock names, see #33294

Events

  • Pressing non-modifier key before releasing previous non-modifier button is treating as second key with modifier of first key, which is confusing in some cases (see #29586)
  • Need to implement two queues of events for dominant and secondary operands so it'll be a general way to apply some tool and navigate through viewspace.
  • ESC presses to stop render or simulations now don't use events, but set the "G.is_break" always before events get handled. That's to ensure an ESC is working always, but it conflicts with pressing ESC in buttons or FileWindow etc.
  • Implementation of mouse "Press" versus "Tweak" versus "Click" and "Release" event is very fuzzy, and seems to be not much in control for KeyMaps. Main reason is Select-activate operator, that marks an event "Handled" as well as "Pass through". See #34206, #35859
  • Holding buttons generates key-repeat events, making it impossible to have actions execute while a key is held. #40537
  • Modifiers keys should probably be reworked, currently in some cases (like -switching between windows) wrong modifiers states can remain in wmWindow, this should be managed by Ghost (see #40155).
  • Seems some operators doesn't check where event came from when dealing with different zoom methods #37372
  • Holding a modifier key before activating a window, Blender doesn't update that the modifier is being pressed. #40317

Macros

  • UI to create/record/edit them.
  • Python can't set with properties for nested operators yet when calling a macro.
  • Macro options can't be edited in the toolbar #35079

Toolbars, Property views

  • Save positions in file, implement useful memory here as well (per mode, object type?).
  • Set properties, icons, text for items.
  • Different shapes, horizontal, .. ?

Regions, Areas, Screens

  • Scrolling on pop-up regions doesn't behave properly (#28199)
  • Popup dialog box buttons for operator can only be pressed once (#35154)
  • Opening a temporary fullscreen editor from an existing one of the same type shouldn't override settings of the existing one (#70583)

Undo, Redo and Operator Context

  • Global undo doesn't work with editing text. (also mentioned in Editors category) (#24543)
  • Redo in editmode fails for ops that are not in editmode, like 'New Image' texture and "Edit texture space" (future todo)
  • Redo for operators that depend on mouse position doesn't work.
  • Redoing operators should give reports in some cases, see (#21060).
  • Patch for more elaborate operator context poll (#21888) (needs review still). Operator context and rna context are still problematic...
  • Run operator, change a property somewhere and then redo operator reverts the property ((#28482), #31231)
  • Redo operator behaves wrong when run from edit mode and operator changes data not related on topology and geometry (see (#30968))
  • It's not currently possible to create a key logging python script that captures all events, there is no way for the operator to always receive events or get the context as the mouse moves ((blender/blender-addons#28969))
  • Memory usage of global undo might be improved in cases like removing CustomData layers (#31377)
  • Undo 'Create Transform Orientation' leaves a blank menu (screen data becomes out of sync with the scene) (#42468)
  • Undo/Redo 'Create Transform Orientation' does not handle Use After Creation option well (similar issue as above) (#46011).
  • Undo 'Bake' currently fails (#45788)

Undo stack

  • Redesign undo stack to get rid of problems caused by global and local stacks. Some of known limitations:
    • Text editor vs global undo conflict, same for texture painting
    • Unable to undo changes made to modifiers stack when user is in sculpt/edit mode
    • Armature editmode undo doesn't restore pose constraints.
    • Changing frame number followed by operator redo resets frame back (see (#28871)).
    • Undo during painting doesn't restore expected object data, see #38436
  • Undo stack isn't aware about memory usage which easily leads to all memory used and crash ((#30730)).
  • Mixing object modes confuses hook remapping on undo after toggling edit mode #41226

Toolbox

Windows

  • Better updates between windows when i.e. playing animation: (#21412).
  • Closing a render window invalidates material preview render area: (#23848) (temp fix in rev 32040)

Interactive Updates (slowness)

  • Immediate update when dragging button can be slow,
    can give problems when setting very high number for e.g. subsurf, can lock up. see (#24137).

User Preferences

  • Theme colors need to be exposed in less messing way, so it'll be clear which exactly UI element is controlled by this color (see (#26947))
  • Resetting defaults doesn't update presets menu #34454
  • Some options can't be easily decoupled between user_pref.blend and startup.blend #48112

UI Widgets

  • Todo
    • Port operator names from UI scrips to operators
    • Color coding in buttons only works when animated property is in "own" ID data (for example, a material driver is on object level, and doesn't color button purple)
    • Tab-key cycle to new button should skip option buttons: #23666
    • Make tooltips for properties show shortcuts, in case an operator exists that changes this property
    • Remove time for tooltip to appear after the the user has waited for the first one. Reset this timer when the user moves away from viewing tooltips.
    • Couple usages of UILayout.template_preview will display only the first, see #28822.
    • Some interface elements are getting misaligned when toggling some property, see #32188
    • prop_search() buttons cant be created by the auto-ui, and currently need to be done manually in a draw function. see, #35154
    • Add back alt+scroll for non-RNA pulldown menus, to cycle into values. Not so easy to do, probably can only be handled with a dedicated callback? #39374
    • Alignment tips from the scripts not always gives expected results blender/blender-addons#28391
Dimensinal UI items (like e.g. normal size or object's position) do not take into account scene's scale setting, which makes them pretty much unusable with big or small scales (e.g. 0.001 in metric, making millimeter as default unit, values change way to quickly, T41308).
  • Dimensions buttons dont support multi-drag #38587

  • ColorPicker/menu closing behaviour when opened over other area #22476

  • ColorPicker HSV values currently ignores color pipeline #41287

  • Proposals

    • The maximum (100%) value for scroll bars is usually too small in 2d views such as Node Editor etc. (you can never zoom out far enough using the handles)
    • Make the Import and Export commands single operators. The import/export file format can then be chosen from a menu inside the file browser. [http://www.reynish.com/files/blender25/exporters.png Mockup]
    • RNA Path Builder widget/mini-outliner for setting up Drivers and Keying Sets
    • List Template popup for quick overview/search of many items. [http://www.reynish.com/files/blender25/console_ui.png Mockup]
    • jendrzych made a good proposal on how to improve the listview for materials/textures [http://img76.imageshack.us/img76/4686/datablockminibrowserpro.png Mockup.]
    • Implement new clean modifier list [http://tenderlovingdesign.com/storage/blender/Modifier_Proposal.pdf Mockup]
    • Drag support for reordering textures, modifiers and constraints.
    • Tweak console list. It is very hard to distill the essential information here.
    • Make Info window stick to the top or bottom of the screen and remove ability to drag it. This causes some issues with the menus disappearing and is no longer needed.
    • Animate sub-regions in and out
    • Scroll bar wdiges could hide if not needed
    • Disable most entries in the File menu when FileBrowser is open (Clicking open while a filebrowser for opening files already exists opens a new one in the info area)
    • Limit Operator vs Tools resizing so there isn't a way to lose Operator area.
    • Gamma correction options for Histogram and RGB curves widget
    • Check on negative colours interaction with HSVCIRCLE widgets
    • Text selection background for sliders is using the same color as for slide bar (#30881)

Presets

  • Remember the chosen preset for things like subsurface scattering and cloth. Would also be good to change the shown preset name to "custom" when a value defined by the presets is changed. See #23597.
  • Preset names are always CamelCase #31295.

Archived Design Tasks

This list is for for user interface tasks which have no conclusion.

No resolution or activity in over 3 months,
archiving, listed in the wiki .
Can re-open when we have time to handle this one.

  • Update brush icons #37960.
  • Making the mode selection dropdown list in the Editor headers consistent across all editors that use them #38254.
  • Presets & ID browser. Move + and x into the menu #38082.
  • Sequencer - Display timestamps using standard timecodes instead of a custom method #38242.
  • Use brightness to communicate information depth #38036.
  • Improve visual distinction between Editors #38038.
  • Improve visual connection between properties screens and areas #37702.
  • Tools with no settings pollute the 'redo' panel #37443.
  • Transform tools redo panels show options that don’t make sense. #37446.
  • 'Redo' panel: Some redo settings don't make sense to edit #37439.
NOTE: this is a direct dump of https://wiki.blender.org/index.php/Dev:Source/Development/Todo/UserInterface (without cherrypicking the [still] valid items) ## General 2.5 targets - [ ] Support in operators for 'menu names', remove all custom names in UI scripts. - [ ] Selecting Fonts and "Styles" for drawing UI (font sizes for panel headers etc) has to be implemented still ## General todo items - [ ] Consistent method for generating/appending/reordering/removing customizable lists of tools (tool shelf, custom menus, etc). If this can't be done quickly, then remove customization options for tool shelf and leave for a later release. - [ ] Editing multiple datablocks at once. - [ ] Saving thumbnails currently saves the 3D view, which isn't useful for blend files primarily using the sequencer: See #34112 - [ ] Reduce memory usage of font caches for utf8 fonts (#34627) - [ ] Search function: Unicode is case sensitive when it shouldn't be (#43221) - [ ] Support font rendering using sub-pixel bitmaps. Should fix jagged drawing of some fonts without anti-aliasing enabled (#53041). ## Properties Editor - [ ] Undo looses buttons stored path (#40046) - [ ] Default property units is not always what users expect it to be #40312 ## File Path handling - [ ] Implement generic system to handle cross platform paths, relative paths, network drives, shortcuts, stream input files, etc. - [ ] Path editing and commands in Blender now still leave 'trails' (old strings readable). (#35712) ## Issues per category ### Mouse Support - [ ] X11 Isn't using true grabbing since it can lock the OS, see #39144 - [ ] Continuous grab doesn't work when the Blender window goes outside of the screen, see #50005 ### Tablet Support - [ ] Fix conflicts with tablets in absolute mode and Continuous Grab enabled (i.e. by ignoring Continuous grab if events come from tablet), see #43106 ### NDOF / 3D Mouse - [ ] Note: default usage keeps view pivot the same, so you can use it for modeling. Options for panning or free fly mode are with modifier keys. You can set own preferences via the User Preferences keymap editor. - [ ] The Space-Navigator software on windows seems to be causing problems #42694 ### Keymap Editing - [ ] Check for key conflicts. (operator wm.keyconfig_test already does that but only prints result to console due to high number of false positives) - [ ] Check for key conflicts when assigning a key, see #35588 - [ ] Allow Mouse Events to work with Custom Modifier Key #32641, #34822 - [ ] Keymap conversion is not always correct across Blender versions #44115 - [ ] Blender hotkey priority is defined by order but hotkey editor does not allow for order editing #53710 ### File Browser - [ ] Create button types for File Browser buttons (mostly hardcoded, atm) ### Blender Window Manager - [ ] <none> ### Menu - [ ] Resolve the case when the mouse isn't able to select the last used item in a menu see: #32542 - [ ] Some menus are too wide to draw reliably for narrow windows. #34500 - [x] Add assign shortcuts option to Menus. #51095 ### Search menu - [ ] Search (space) doesn't show hotkeys for operators (like Mark Seam) that in a collection, like CTRL+E. Unsure what best solution would be, but definitely worth investigating. - [ ] ID search menu has got fixed width which isn't convenient to choosing long datablock names, see #33294 ### Events - [ ] Pressing non-modifier key before releasing previous non-modifier button is treating as second key with modifier of first key, which is confusing in some cases (see #29586) - [ ] Need to implement two queues of events for dominant and secondary operands so it'll be a general way to apply some tool and navigate through viewspace. - [ ] ESC presses to stop render or simulations now don't use events, but set the "G.is_break" always before events get handled. That's to ensure an ESC is working always, but it conflicts with pressing ESC in buttons or FileWindow etc. - [ ] Implementation of mouse "Press" versus "Tweak" versus "Click" and "Release" event is very fuzzy, and seems to be not much in control for KeyMaps. Main reason is Select-activate operator, that marks an event "Handled" as well as "Pass through". See #34206, #35859 - [x] Holding buttons generates key-repeat events, making it impossible to have actions execute while a key is held. #40537 - [ ] Modifiers keys should probably be reworked, currently in some cases (like <alt-tab>-switching between windows) wrong modifiers states can remain in wmWindow, this should be managed by Ghost (see #40155). - [ ] Seems some operators doesn't check where event came from when dealing with different zoom methods #37372 - [ ] Holding a modifier key before activating a window, Blender doesn't update that the modifier is being pressed. #40317 ### Macros - [ ] UI to create/record/edit them. - [ ] Python can't set with properties for nested operators yet when calling a macro. - [ ] Macro options can't be edited in the toolbar #35079 ### Toolbars, Property views - [ ] Save positions in file, implement useful memory here as well (per mode, object type?). - [ ] Set properties, icons, text for items. - [ ] Different shapes, horizontal, .. ? ### Regions, Areas, Screens - [ ] Scrolling on pop-up regions doesn't behave properly (#28199) - [x] Popup dialog box buttons for operator can only be pressed once (#35154) - [ ] Opening a temporary fullscreen editor from an existing one of the same type shouldn't override settings of the existing one (#70583) ### Undo, Redo and Operator Context - [ ] Global undo doesn't work with editing text. (also mentioned in Editors category) (#24543) - [ ] Redo in editmode fails for ops that are not in editmode, like 'New Image' texture and "Edit texture space" (future todo) - [ ] Redo for operators that depend on mouse position doesn't work. - [ ] Redoing operators should give reports in some cases, see (#21060). - [ ] Patch for more elaborate operator context poll (#21888) (needs review still). Operator context and rna context are still problematic... - [ ] Run operator, change a property somewhere and then redo operator reverts the property ((#28482), #31231) - [ ] Redo operator behaves wrong when run from edit mode and operator changes data not related on topology and geometry (see (#30968)) - [ ] It's not currently possible to create a key logging python script that captures all events, there is no way for the operator to always receive events or get the context as the mouse moves ((blender/blender-addons#28969)) - [ ] Memory usage of global undo might be improved in cases like removing CustomData layers (#31377) - [ ] Undo 'Create Transform Orientation' leaves a blank menu (screen data becomes out of sync with the scene) (#42468) - [x] Undo/Redo 'Create Transform Orientation' does not handle Use After Creation option well (similar issue as above) (#46011). - [ ] Undo 'Bake' currently fails (#45788) ### Undo stack - [ ] Redesign undo stack to get rid of problems caused by global and local stacks. Some of known limitations: - [ ] Text editor vs global undo conflict, same for texture painting - [ ] Unable to undo changes made to modifiers stack when user is in sculpt/edit mode - [ ] Armature editmode undo doesn't restore pose constraints. - [ ] Changing frame number followed by operator redo resets frame back (see (#28871)). - [ ] Undo during painting doesn't restore expected object data, see #38436 - [ ] Undo stack isn't aware about memory usage which easily leads to all memory used and crash ((#30730)). - [ ] Mixing object modes confuses hook remapping on undo after toggling edit mode #41226 ### Toolbox - [ ] Bring back toolbox menus, or some sort of radial/pie menu. ([http://i.imgur.com/Lxqn1.jpg mockup]) ### Windows - [ ] Better updates between windows when i.e. playing animation: (#21412). - [x] Closing a render window invalidates material preview render area: (#23848) (temp fix in rev 32040) ### Interactive Updates (slowness) - [ ] Immediate update when dragging button can be slow,<br>can give problems when setting very high number for e.g. subsurf, can lock up. see (#24137). ### User Preferences - [ ] Theme colors need to be exposed in less messing way, so it'll be clear which exactly UI element is controlled by this color (see (#26947)) - [ ] Resetting defaults doesn't update presets menu #34454 - [ ] Some options can't be easily decoupled between user_pref.blend and startup.blend #48112 ### UI Widgets - [ ] Todo - [ ] Port operator names from UI scrips to operators - [ ] Color coding in buttons only works when animated property is in "own" ID data (for example, a material driver is on object level, and doesn't color button purple) - [x] Tab-key cycle to new button should skip option buttons: #23666 - [ ] Make tooltips for properties show shortcuts, in case an operator exists that changes this property - [ ] Remove time for tooltip to appear after the the user has waited for the first one. Reset this timer when the user moves away from viewing tooltips. - [ ] Couple usages of UILayout.template_preview will display only the first, see #28822. - [ ] Some interface elements are getting misaligned when toggling some property, see #32188 - [ ] prop_search() buttons cant be created by the auto-ui, and currently need to be done manually in a draw function. see, #35154 - [x] Add back alt+scroll for non-RNA pulldown menus, to cycle into values. Not so easy to do, probably can only be handled with a dedicated callback? #39374 - [ ] Alignment tips from the scripts not always gives expected results blender/blender-addons#28391 ``` Dimensinal UI items (like e.g. normal size or object's position) do not take into account scene's scale setting, which makes them pretty much unusable with big or small scales (e.g. 0.001 in metric, making millimeter as default unit, values change way to quickly, T41308). ``` - [ ] Dimensions buttons dont support multi-drag #38587 - [ ] ColorPicker/menu closing behaviour when opened over other area #22476 - [ ] ColorPicker HSV values currently ignores color pipeline #41287 - [ ] Proposals - [ ] The maximum (100%) value for scroll bars is usually too small in 2d views such as Node Editor etc. (you can never zoom out far enough using the handles) - [ ] Make the Import and Export commands single operators. The import/export file format can then be chosen from a menu inside the file browser. [http://www.reynish.com/files/blender25/exporters.png Mockup] - [ ] RNA Path Builder widget/mini-outliner for setting up Drivers and Keying Sets - [ ] List Template popup for quick overview/search of many items. [http://www.reynish.com/files/blender25/console_ui.png Mockup] - [ ] jendrzych made a good proposal on how to improve the listview for materials/textures [http://img76.imageshack.us/img76/4686/datablockminibrowserpro.png Mockup.] - [ ] Implement new clean modifier list [http://tenderlovingdesign.com/storage/blender/Modifier_Proposal.pdf Mockup] - [ ] Drag support for reordering textures, modifiers and constraints. - [ ] Tweak console list. It is very hard to distill the essential information here. - [x] Make Info window stick to the top or bottom of the screen and remove ability to drag it. This causes some issues with the menus disappearing and is no longer needed. - [x] Animate sub-regions in and out - [x] Scroll bar wdiges could hide if not needed - [ ] Disable most entries in the File menu when FileBrowser is open (Clicking open while a filebrowser for opening files already exists opens a new one in the info area) - [ ] Limit Operator vs Tools resizing so there isn't a way to lose Operator area. - [ ] Gamma correction options for Histogram and RGB curves widget - [ ] Check on negative colours interaction with HSVCIRCLE widgets - [x] Text selection background for sliders is using the same color as for slide bar (#30881) ### Presets - [ ] Remember the chosen preset for things like subsurface scattering and cloth. Would also be good to change the shown preset name to "custom" when a value defined by the presets is changed. See #23597. - [ ] Preset names are always CamelCase #31295. ## Archived Design Tasks This list is for for user interface tasks which have no conclusion. > No resolution or activity in over 3 months, > archiving, listed in [the wiki ](http://wiki.blender.org/index.php?title=Dev:Source/Development/Todo/UserInterface#Archived_Design_Tasks). > Can re-open when we have time to handle this one. - [x] Update brush icons #37960. - [ ] Making the mode selection dropdown list in the Editor headers consistent across all editors that use them #38254. - [ ] Presets & ID browser. Move + and x into the menu #38082. - [ ] Sequencer - Display timestamps using standard timecodes instead of a custom method #38242. - [x] Use brightness to communicate information depth #38036. - [x] Improve visual distinction between Editors #38038. - [x] Improve visual connection between properties screens and areas #37702. - [x] Tools with no settings pollute the 'redo' panel #37443. - [x] Transform tools redo panels show options that don’t make sense. #37446. - [x] 'Redo' panel: Some redo settings don't make sense to edit #37439.
Author
Member

Added subscribers: @lichtwerk, @ideasman42

Added subscribers: @lichtwerk, @ideasman42

Added subscriber: @0o00o0oo

Added subscriber: @0o00o0oo

Added subscriber: @REMBO

Added subscriber: @REMBO

Added subscriber: @angus73

Added subscriber: @angus73

Removed subscriber: @angus73

Removed subscriber: @angus73

Added subscriber: @angus73

Added subscriber: @angus73

Added subscriber: @MaciejJutrzenka

Added subscriber: @MaciejJutrzenka
Member

Added subscriber: @JulianEisel

Added subscriber: @JulianEisel
Member

Went through the list to check which items are still valid. Quite some were addressed already. Marked them as done, and left a quick comment explaining why in the linked tasks (in non-obvious cases at least).

Went through the list to check which items are still valid. Quite some were addressed already. Marked them as done, and left a quick comment explaining why in the linked tasks (in non-obvious cases at least).

Added subscriber: @Yashar

Added subscriber: @Yashar
Philipp Oeser removed the
Interest
User Interface
label 2023-02-10 09:26:14 +01:00
Member

Closing, since other tasks have the same general goal (i.e. #118940), and these older parent tasks don't serve much purpose anymore.

Closing, since other tasks have the same general goal (i.e. #118940), and these older parent tasks don't serve much purpose anymore.
Blender Bot added
Status
Archived
and removed
Status
Confirmed
labels 2024-03-03 05:00:21 +01:00
Sign in to join this conversation.
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
8 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#55364
No description provided.