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
AgeCommit message (Collapse)Author
2018-07-01Cleanup: remove num argument prefixCampbell Barton
2018-06-30Merge branch 'master' into blender2.8Campbell Barton
2018-06-30Cleanup: remove unused context arg to menuCampbell Barton
2018-06-30Merge branch 'master' into blender2.8Campbell Barton
2018-06-29Fix T54524: keyframe and driver colors not showing in shape key list.Brecht Van Lommel
This reverts commit 357b72e0a7d4a270bf1273102595446ccca16259 which caused the issue, we need a better fix for that cosmetic issue from T50862. For now displaying keyframes and drivers is the more important one.
2018-06-29Fix unnecessary empty space in shading popover.Brecht Van Lommel
2018-06-26UI: decrease status bar height.Brecht Van Lommel
2018-06-26Cleanup: styleCampbell Barton
2018-06-25UI: Right align check-box for extra text spaceCampbell Barton
See: T54951
2018-06-18UI: decorators hid non-array buttonsCampbell Barton
Error in last commit.
2018-06-18UI: decorators weren't showing icon-only buttonsCampbell Barton
2018-06-18Fix T55511: Decorator drag makes many undo stepsCampbell Barton
Each keyframe made a separate undo step.
2018-06-18Fix T55517: Property-split fails w/ expanded enumCampbell Barton
2018-06-17UI: decorator color button assertCampbell Barton
Also set 'all' argument based on the RNA-index (even though it worked, better set to correct value).
2018-06-16Correct assert in recent changesCampbell Barton
2018-06-16UI: support dragging to key-frameCampbell Barton
2018-06-16UI: Add property decorator buttonsCampbell Barton
When use_property_split is enabled, this template adds buttons to set keyframes, (Alternative to showing color). See: T54951
2018-06-15Merge branch 'master' into blender2.8Bastien Montagne
2018-06-15Cleanup: some more G.main removal/validation...Bastien Montagne
2018-06-14Cleanup: styleCampbell Barton
2018-06-13Error in recent popover widthCampbell Barton
2018-06-13Fix pop-over buttons always getting space for iconCampbell Barton
2018-06-13Merge branch 'master' into blender2.8Campbell Barton
2018-06-13Cleanup: swapped X/Y UI_UNITCampbell Barton
2018-06-11Fix separator element for headers with multiple directionsDalai Felinto
2018-06-11UI: Separator spacerDalai Felinto
This support layout.separator_spacer() to be used by headers as a way to dynamically separate the ui buttons. Right now no UI file is changed, though we can use this right away in the timeline, and shortly after in the viewport header (moving settings from the topbar to it). Original design by William Reynish. Review: Campbell Barton D3468
2018-06-09Merge branch 'master' into blender2.8Campbell Barton
2018-06-09RNA: remove Layout.introspectCampbell Barton
This was added as an experiment to extract information for docs but this was never all that useful for its intended purpose.
2018-06-09UI: always show popover subpanel header textCampbell Barton
2018-06-09UI: fix popover subpanel header displayCampbell Barton
2018-06-09UI: use draw_header function for popover buttonsCampbell Barton
Add 'is_popover' for panel draw functions to check if they're in a popup. This puts dyntopo toggle next to the popover.
2018-06-09Add new GridFlow layout.Bastien Montagne
This mimics the 'spreadsheet' behavior. Columns and/or rows can have equal sizes, or adapt to their content - but always in a grid way (i.e. all items in a same column will always have same available width, and all items in a same row will always have same available height). Also, you can fill (order) the grid in a row- or column-major way. Not used anywhere for now. Differential: https://developer.blender.org/D2395
2018-06-09UI: initial support for parent panels in popoversCampbell Barton
Currently this just includes the panels, no support for collapsing yet.
2018-06-05UI: support property split for 'prop_search'Campbell Barton
2018-06-01UI: don't show XYZ text w/ direction buttonsCampbell Barton
2018-05-30Cleanup: style/whitespaceCampbell Barton
Also use 'uint'.
2018-05-30UI: fix property split w/ color buttons & empty textCampbell Barton
2018-05-28UI: Option to layout properties in two columnsCampbell Barton
Needed for proposed alternate layout, see T54951.
2018-05-27Merge branch 'master' into blender2.8Campbell Barton
2018-05-27UI: replace BLI_strncpy w/ memcpyCampbell Barton
Size is already checked.
2018-05-25UI: fix event handling directionCampbell Barton
Correct arrow key direction in popovers, also de-duplicate menu callback,
2018-05-25UI: Move UI_paneltype_draw into layout codeCampbell Barton
No functional changes, needed for persistent popovers.
2018-05-23UI: popup panel operator, as we have for menusCampbell Barton
2018-05-23Merge branch 'master' into blender2.8Campbell Barton
2018-05-23Cleanup: strip trailing space from interface filesCampbell Barton
2018-05-13Fix compiler warnings.Brecht Van Lommel
2018-05-13UI/Python: layout API support for setting button emboss style.Brecht Van Lommel
2018-05-13Cleanup: deduplicate layout item initialization.Brecht Van Lommel
2018-05-13UI: show toolbar shortcutsCampbell Barton
When toobar text is expanded, show shortcuts (normally confined to menus).
2018-05-05UI: experiment to make popover buttons draw like enum menus.Brecht Van Lommel
Looks better for 3D viewport shading, but needs more tweaks to distinguish it from other button types probably.