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
2017-09-10merged the master branchsoc-2017-vertex_paintDarshan Kadu
2017-05-20CMake: Use GCC7's -Wimplicit-fallthrough=5Campbell Barton
Use to avoid accidental missing break statements, use ATTR_FALLTHROUGH to suppress.
2017-05-09Fix (unreported): Crash if a right click is performed on an image datablock ↵Thomas Beck
(open btn f.e.). Only access/insert the button_pointer if it's not null...
2017-05-05Revert "Add red alert in UI controls for datablock pointer properties"Julian Eisel
This reverts commit f5bc8ad4ce87165fc0648f1cd8c0ae1fb5f07281. We agreed there needs to be a better solution for this, see comments in rBf5bc8ad4ce87165.
2017-04-29Implementation of custom python entries in all right click menusThomas Beck
Hi Guys, as one of my clients needs the possibility to have custom menu entries in the general right click menu (all over Blender: in the node editor, properties, toolbars,..) I talked with Campbell about expanding our hard coded menu a bit. This is the outcome. As I only need those two, I support currently a button_prop and a button_pointer. {F540397} I tested the changes with a custom script where I added a custom entry and executed an operator on click - it seems to work exactly how it's intended to. The script: {F540435} As I'm not too experienced in rna stuff I would really appreciate any review. Thanks very much Campbell for his open ears & help on this issue! Reviewers: campbellbarton, mont29 Reviewed By: campbellbarton, mont29 Subscribers: sybren, mont29 Tags: #addons Differential Revision: https://developer.blender.org/D2612
2017-04-20D2607: Switch eye dropper to use linear color space internallyStefan Werner
This switches the internal color representation of the eye dropper from display space to linear. Any time a linear color is requested and the color is picked from a linear object, the result is now precise to the bit as the color gets patched through directly. Color space conversion now only happens when a color is picked from non-linear display space objects or when the color is requested to be returned in non-linear space. In addition, this patch changes the DifferenceMatte node to interpret a tolerance of 0.0 to accept colors that are identical bit by bit, as apposed to simply refusing all colors.
2017-04-13Add red alert in UI controls for datablock pointer propertiesAlexander Romanov
2017-04-11Fix: width of UILayout.prop_enum() buttonsraa
2017-04-01Cleanup: styleCampbell Barton
2017-03-31UI cleanup: simplify Icon handling of uiDefAutoButR for PROP_POINTER.Bastien Montagne
Comes from D113, but really not related to the patch's topic!
2017-03-31Cleanup: warningsCampbell Barton
2017-03-30Redraw parent popup when the child popup is closedraa
2017-03-28Fix: Icon offset for pie buttonsraa
2017-03-28Fix columns with fixed widthraa
2017-03-26Fix padding and align calculation for box layoutsraa
2017-03-26Fix: Ignore min flag for rows that require all available widthraa
2017-03-26Fix: Use "round" instead of "floor" in snapping UI to pixelsraa
2017-03-26Fix: Button's label can be NULLraa
2017-03-22Cleanup/optimization: Simplify some usages of uiItemFullO/_ptr, avoid ↵Bastien Montagne
multiple search of same op.
2017-03-22Depsgraph: Fix missing relations update tag when typing #frameSergey Sharybin
New depsgraph requires relations to be updated after drivers changes.
2017-03-22Fix for splash not opening centeredCampbell Barton
When the new window didn't end up using the size stored in the preferences the splash would not be centered (even outside the screen in some cases). Now centered popups listen for window resizing.
2017-03-18Cleanup: use return args last and 'r_' prefix.Campbell Barton
2017-03-17Various icon adjustmentsraa
2017-03-11Fix icon alignment for pie buttonsraa
2017-03-11Cleanup: code style & cmakeCampbell Barton
2017-03-11Fix text and icon positioning issue on high DPI, after recent changes in ↵Brecht Van Lommel
32c5f3d.
2017-03-10Fix T50900: Text-Blocks created from "Edit Source" have zero users.Bastien Montagne
2017-03-06Fix width calculation for split layoutsraa
2017-03-06Multi-View: Map cursor coordinates to visual coordinatesJulian Eisel
When rendering multi-view in side-by-side or top-bottom mode, we squash the UI to half of its size and draw it twice on screen. That means the cursor coordinates used for UI interaction don't match what's visible on screen. This commit is a little event system hack (tm) to fix this. It has some small glitches with cursor grabbing, but nothing to bad. We'll also use it for viewport HMD support. D1350, thanks for the feedback @dfelinto!
2017-03-01All drop-down buttons should use the same widthraa
2017-03-01Fix text and icon positioning issuesraa
2017-02-27Fix missing break setting curve auto-handlesCampbell Barton
2017-02-25Fix rows with fixed last item (D2524)raa
2017-02-23Columns should be expandable by defaultraa
2017-02-21Fix Drawing nested box layouts (D2508)raa
2017-02-09Use a smaller cross icon for clearing search box contentsJoshua Leung
2017-02-02Fix T50497: prop_search not correctly drew in UI (D2473)raa
2017-02-01Fix T50570: pressing pgup or pgdn in any scrollable area irreversably alters ↵Bastien Montagne
scrolling speed. 'page' prop of scroll up/down operators would get stuck once set once by pageup/down keys... Now only take this prop into account if explicitely set, not when its value is inherited from previous run.
2017-01-24Fix T50386: Crash when spawning pie menusJulian Eisel
D2455 by @raa, thanks!
2017-01-20Fix/cleanup stupid check on array of char being non-NULL pointer...Bastien Montagne
Reported by coverity scan.
2017-01-20Cleanup/fix some BLI_string_utf8 not using size_t/off_t as expected.Bastien Montagne
2017-01-12UI: Try limiting 'x' icon to search buttonsJulian Eisel
Reusing PROP_TEXTEDIT_UPDATE instead of adding a new property flag just for search strings. Currently it's only used for search strings anyway so seems fine for now. Fixes T50336.
2017-01-10UI Layout: fix some cases mixing fixed and expandable sizesBastien Montagne
When layout has only small buttons (buttons with icon and without label) its size should be fixed. Code was modified to be able to add a new UI_ITEM_MIN flag which indicates that the layout has only small fixed-width buttons. Patch by @raa, with minor style edits by @mont29. Reviewers: Severin, mont29 Reviewed By: mont29 Tags: #bf_blender, #user_interface Differential Revision: https://developer.blender.org/D2423
2016-12-28UI: Make icon-only buttons for enum items with empty label.Bastien Montagne
Patch D2420 by @raa, thanks.
2016-12-16Fix drawing enum property with icon only flagJulian Eisel
Enum properties with icon only flag should use minimum/fixed width in expanded layouts (alignment=UI_LAYOUT_ALIGN_EXPAND). Differential Revision: https://developer.blender.org/D2415 by @raa (only made some really minor corrections)
2016-12-15Proper fix for strict compiler warningSergey Sharybin
2016-12-15Revert "Cleanup: Remove unused variable"Sergey Sharybin
This reverts commit 743165eb48870f1d68c8df48cc5907dea857b017. Didn't see it is used in debug mode, sorry
2016-12-15Cleanup: Remove unused variableSergey Sharybin
2016-12-13UI: Externally open file and path from context menuJulian Eisel
Adds two buttons to context (RMB) menu of path buttons: * "Open File Externally" to open a file in an external app (only visible if path contains a filename) * "Open Location Externally" to open a path in an external file browser The functionallity for this was already there, just hidden behind Shift/Alt click of file_browse button (folder icon next to path button).
2016-12-08Fix T49872: 3D cursor places with camera shift in ortographic modeJulian Eisel