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
2015-06-10Fix T45013 negative curve falloff not working.Antony Riakiotakis
Was doing clamping as fix for T42984. Seems we can ommit clamping for sculpting if we make sure overlap is not zero with negative values. Control for clamping is moved to the "Use Clipping" function of curves (which is on by default), so both bugs remain squashed and advanced users can now properly utilize curves in sculpting, though not all brushes work well with negative curves.
2015-06-10Correct typosCampbell Barton
D1337 by @lichtwerk
2015-06-09Disable key accelerators for splash screenCampbell Barton
2015-06-09Fix T45002: sculpt show brush toggle no longer working.Bastien Montagne
2015-06-09Fix T45003: some UI/i18n issues.Bastien Montagne
* Do not translate renderlayers' names, those are data, not UI (defined by user). * Translate passes' names, even in button itself (menu items were already translated). * Translate 'ID type' in ID eyedropper helper message. Also, added i18n context to IDType private struct, and `BKE_idcode_to_translation_context()` helper, much more generic and easy to maintain than the private util in interface_template.c.
2015-06-09Fix T44930: File-select in redo panel, disables UICampbell Barton
2015-06-08Remove redundant NULL checkCampbell Barton
2015-06-08Fix yet another fullscreen glitchJulian Eisel
Steps to reproduce were: Toggle fullscreen->F12->F3->ESC 2x->3D View changed to Image Editor and didn't change back. Actually it doesn't work 100% as wanted since it exits the fullscreen when pressing ESC to exit Image Editor but it's hard to support all cases with such a weird spaghetti code.
2015-06-08Fix T44976: 3D View turns into an Image Editor after saving renderJulian Eisel
result Was a case of two stacked temporary fullscreens, so a quite extreme situation.
2015-06-08Fix T44964: Bisect tool /w nonuniform scaleCampbell Barton
2015-06-08RNA: Object.shape_key_remove methodCampbell Barton
Python had no ability to remove shape keys Original D1169 from @lichtwerk, with edits
2015-06-08Cycles: Fix crash doing render preview of external OSL scriptSergey Sharybin
2015-06-08Fix "View All" operation in image space not available with locked interfaceSergey Sharybin
2015-06-08Alternative fix copying windows from popup dialogsCampbell Barton
It could still crash if the window was freed and another was activated. see T44688.
2015-06-07Don't show smoke domain when render-only enabledCampbell Barton
D1339 from @scorpion81
2015-06-06View3D: avoid jumping placing cursor /w lock onCampbell Barton
The view would jump each time, now compensate by adjusting the cursor panning. Less jarring and helps avoid problems when the cursor gets outside the view, see: T40353
2015-06-06Use threshold for selecting side-of-axisCampbell Barton
2015-06-06Cleanup: TyposJulian Eisel
2015-06-06CleanupCampbell Barton
2015-06-05Fix T44960: Crash with 'Shape Cut' in edit hair mode.Bastien Montagne
This is only supported for mesh objects so far. Also, abort in case there are no faces in dm (instead of crashing on NULL BVH tree...).
2015-06-04New "use placeholders" feature of the sequencer did not detect correctAntony Riakiotakis
filenames. Added BLI_path utility functions to decompose a path name and extract the frame number. It should be useful in autocollapse feature as well
2015-06-04Fix tooltip colors not initialized correctlyJulian Eisel
Already committed similar fix (rBbeaed66f292dd) but saw it appearing on other peoples screens a few times since them. Never was able to recreate though. This should make sure everything is initialized fine, so if we see it appearing again, then it's likely because of manual tweaks or the version saved in the .blend.
2015-06-04Cleanup: clarify order of precedence: &/?Campbell Barton
2015-06-03Do not show brush cursor for fill brush (size not supported)Antony Riakiotakis
2015-06-03Fix for RMB Menu title including shortcutCampbell Barton
2015-06-03Fix UI string clip (reverse search separator char)Campbell Barton
The string may have many '|' characters, only the last is clipped.
2015-06-03Cleanup: check button flag for shortcut delimiterCampbell Barton
2015-06-03Fix multires update (reading `char *` as an `int *`)Campbell Barton
2015-06-03Correct vert/edge slide poll functionsCampbell Barton
Would crash trying to access outside the 3D view.
2015-06-02Fix operator exec /w popups that close the windowCampbell Barton
Related to T44688, note supporting this case isn't so nice, but seems it can be made to work.
2015-06-02Fix compilation error after recent commitSergey Sharybin
2015-06-02Fix T44921: Node editor, nodes position not maintained after Material panel ↵Sergey Sharybin
changes Also improved a bit behavior of adding new nodes, now they will not overlap that badly. Still not ideal, but further improvements better not to happen at bcon4.
2015-06-01UI: tweaks to ID and non ID preview templatesInes Almeida
- label is shown on a UI_UNIT_Y heigh instead of 0.2 * total button size - vertically centering non-ID previews labels - making some constants dependent on ui units
2015-06-01template id previews: changes for consistency with icon views templateInes Almeida
- elongate the buttons to acomodate the icon without the label overlapping. - removing the blue background - adding a consistent margin all around the popup
2015-06-01template ID previews: quick fix for buttons region overlapping the search buttonInes Almeida
2015-06-01Fix T44915 vertex color lost when adding new layer in edit mode.Antony Riakiotakis
Was copying new layer colors to old layer colors.
2015-06-01Fix T40621: Tablet in walk mode failsCampbell Barton
Add support for walk mode /w absolute pointing devices.
2015-06-01Fix T44747: Drag toggle /w nodes (glitch)Campbell Barton
It was possible to perform actions while performing a drag-toggle.
2015-06-01Fix for leak in BM_uv_element_map_createCampbell Barton
Also correct over alloc and redundant alloc.
2015-06-01Fix vertex slide regression /w rotated objectsCampbell Barton
2015-05-31Fix ugly drawing of closed panels in horizontal layoutJulian Eisel
Also minor cleanup
2015-05-31UI: comments (doxygen tweaks)Campbell Barton
2015-05-30Correct own error with recent commitCampbell Barton
Caused entering an invalid number to leak.
2015-05-30Fix reading uninitialized bufferCampbell Barton
2015-05-29Cleanup: Use true/false for bool, namingJulian Eisel
2015-05-29Fix T44882, color picker in texpainting doing linear interpolation evenAntony Riakiotakis
when mipmap is off. We used to always have nearest interpolation for texpaint but at least make this work with mipmap off correctly. Also added conversion casts to avoid integer overflow in filtering code
2015-05-29UI cleanup: removing if, condition was already testedInes Almeida
2015-05-29BMesh: select linked /w delimiters & wire edgesCampbell Barton
Add support for using edge delimiters mixed with wire edges. Code isn't so elegant but users will expect this.
2015-05-28Aaaaand another fullscreen glitchJulian Eisel
Steps to reproduce were: Set a *Properties Editor* to fullscreen- >render->Info Editor is set to Image Editor instead of Properties Editor
2015-05-28Fix another fullscreen toggle glitchJulian Eisel
Steps to reproduce were: Set 3DView to fullscreen->render->toggle out of fullscreen->escape->Area doesn't change back to 3DView