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-05-26Fix T44821: Making warp shortcut failsCampbell Barton
Using OBJECT prefix for editmode operators causes shortcuts to go into the wrong keymap.
2015-05-26Fix RMB menu in popup, included 'Header' submenuCampbell Barton
2015-05-26Fix T44697: Multi-value edit /w layers failsCampbell Barton
Not such a nice solution, but good to have this working.
2015-05-26BMesh: join tris, split angle limit in twoCampbell Barton
Use a separate limit for face-angle and shape comparisons. There was no way to join non-rectangular, co-planer tries.
2015-05-26BMesh: join tris now delimits all UV/Color layersCampbell Barton
Previously was only checking active layers Also add delimit by edge seam
2015-05-26Cleanup: set var twiceCampbell Barton
2015-05-25Minor cleanup...Bastien Montagne
2015-05-25Fix `widget_draw_preview()` not taking into account given alpha.Bastien Montagne
Needed to get correct 'inactive' effect on buttons with big previews.
2015-05-25preview buttons: tiny optimizationInes Almeida
2015-05-25Fix T44815: Sound bake doesn't check filepathCampbell Barton
2015-05-25Fix error redoing shrink fattenCampbell Barton
Use a property to store even-offset option.
2015-05-25Fix bend in object mode (wasn't rotating objects)Campbell Barton
2015-05-25Fix memory leak /w bend toolCampbell Barton
2015-05-25Cleanup: const char for operator ID'sCampbell Barton
2015-05-24Fix T44814: 'preview' icons would not greyout.Bastien Montagne
Since they are premultiplied, we need separated handling of colors and alpha blending if we want additional alpha factor to work OK.
2015-05-24Some more minor cleanup in new icon preview code.Bastien Montagne
2015-05-24Cleanup: styleCampbell Barton
2015-05-24Fix crash clearing skin data on non meshCampbell Barton
2015-05-24Fix RNA type accessCampbell Barton
2015-05-24Fix unreported bug with recent enum icon preview changes, would show bad in ↵Bastien Montagne
case of mixing items with and without label.
2015-05-23IconView template: adding optional labels to popup buttonsInes Almeida
2015-05-23Cleanup: typosCampbell Barton
2015-05-23Fix (unreported) broken RNA Image pack handling since multiview merge.Bastien Montagne
Was breaking loading of embedded FBX images (among other things, most likely).
2015-05-22Fix second crashing part of T44497, out of bounds access to hookAntony Riakiotakis
modifier data. Unfortunately seems like we also lose the hook mapping by doing this, but this can be fixed later and is probably a separate issue.
2015-05-22Fix T44801: Blender crash in UV-editor.Bastien Montagne
Mistake in cleanup rB30b45d55... Odd compiler did not yell at that. :|
2015-05-22Fix for join faces ignoring angle limitCampbell Barton
Angle limit for join-faces was more advice then actual limit. Now joining entire selection, gives assurance that no faces above the limit will be merged. The purpose of this was to allow users to isolate 2 faces and always join them. Instead, support this by bypassing limit only when its not set and 2 faces are selected.
2015-05-21Fix T44791 triangles when painting on a texpaint planeAntony Riakiotakis
Problem was float precision issues across tile boundaries. Since we are comparing pixels, give a small tolerance when comparing clipped vertices against triangle lines.
2015-05-21GPencil Eraser Size-Saving FixJoshua Leung
On second thought, the eraser size should be saved even if the brush type is not eraser, as we can toggle this now.
2015-05-21Fix T44774: Grease Pencil eraser size reset after exiting sessionJoshua Leung
Previously, it would only save the eraser size if the session ended properly, instead of being cancelled. However, that wouldn't happen if exiting the session using Esc.
2015-05-21Fix T44794: Blend From Shape tool X Icon UI Bug?Bastien Montagne
Note: maybe we could even make `RNA_property_is_unlink()` always return false for enum properties? But well, guess being explicit here does not hurt...
2015-05-21Fix mesh mirror failing on isolated vertsCampbell Barton
2015-05-21UI: Use Ctrl+Wheel to cycle valuesCampbell Barton
Conflicted with Alt for editing multiple values. This could also conflict with global frame change at times.
2015-05-21UI: ignore mouse wheel while editing textCampbell Barton
Mouse wheel was used as home/end. Was annoying since it could happen by accident.
2015-05-20Fix T44717: use_negative_frames ignored /w graph-editorCampbell Barton
D1303 by @barfot
2015-05-20Fix reserve frames in sequencer failing with big frame ranges.Antony Riakiotakis
Detect frame range automatically from number of digits.
2015-05-20Send color managed signal if input spaces changes during image savingSergey Sharybin
We're currently only supporting save to a default format color space, which makes it a bit tricky to prevent ImBuf from being changed. For until when saving to a custom colorspace works we'll just reload image if the space changes.
2015-05-20doxygen: corrections/updatesCampbell Barton
Also add depsgraph & physics
2015-05-19Fix T44766: Connect fails /w selected ngon edgesCampbell Barton
2015-05-19Fix T44553.Antony Riakiotakis
Front face option did not get the correct normals to function - area normal would always point to the direction of the stroke
2015-05-19Fix T44762: Materials flicker in edit-modeCampbell Barton
2015-05-19Object Drawing: avoid redundant material updateCampbell Barton
2015-05-18Fix T44752: Clip Editor doesn't respect ColorSpace setting when playback ↵Sergey Sharybin
after Prefetch
2015-05-18Filebrowser: Do not intent to draw empty strings, loss of time.Bastien Montagne
Fixes assert raised in `UI_text_clip_middle_ex()` when trying to draw (empty) 'size' string for appended/linked blender datablocks.
2015-05-18Fix assert in outliner regarding WM and SCR ID types...Bastien Montagne
2015-05-18Fix T44553: Dyntopo ignores front-face optionCampbell Barton
When 'Front Faces' brush option was enabled, dyntop would still adjust detail on back-faces.
2015-05-18Fix multi-drag & multi-select, Alt press mid-dragCampbell Barton
This would enable multi-value-editing in the middle of the drag action.
2015-05-18UI: errors in buttons now show in info reportCampbell Barton
Mistakes in button expressions were previously only printed to the console.
2015-05-17Fix Node Editor using wrong snap element menu when called from shortcutJulian Eisel
Kudos to @kopias for notifying me :)
2015-05-17Fix T44718: Cycles GLSL not working for NURBS objects.Brecht Van Lommel
2015-05-17UV editor: make Ctrl+E menu with mark/clear seam, instead of always marking.Brecht Van Lommel