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-09UI: hide redundant transform keymap itemsCampbell Barton
2018-07-09Merge branch 'master' into blender2.8Campbell Barton
2018-07-09Cleanup: remove 'Orientation' from keymap item nameCampbell Barton
It's constraint not an orientation, in transform context it can be inferred.
2018-07-09Merge branch 'master' into blender2.8Campbell Barton
2018-07-09Keymap: remove some hard coded transform eventsCampbell Barton
Also re-order for display purposes
2018-07-08Cleanup: abbreviate unsigned types (editors, wm)Campbell Barton
2018-07-04Fix NLA transform crashCampbell Barton
2018-07-04Keymap: Add back Ctrl-M for mirrorCampbell Barton
2018-07-04Fix T55750: Crash on moving sequencer stripCampbell Barton
Custom-data free callback was freeing transform data too.
2018-07-03View3D: Remove v3d->zbufClément Foucault
This is because depth test is set before drawing anything now. There is no case where we want to draw without depth test that is not selection and this case is not handle by v3d->zbuf anymore. UI assume depth test is off by default. The DRWManager assume it's on. This should fix T55623.
2018-07-03Keymap: Adjust animate and manipulator toggle keysCampbell Barton
Make room for Alt-A to be used for de-select. Discussed with artists in studio & @venomgfx, - Use Ctrl-Space for animation. - Use Ctrl-Tab to toggle manipulator. - Remove mirror transform binding.
2018-07-03Correct tool renameCampbell Barton
Needed to update manipulator too.
2018-07-02Cleanup: use _f, _i suffix for GPU state APICampbell Barton
2018-07-02Merge branch 'master' into blender2.8Campbell Barton
2018-07-02Cleanup: use bool for poll functionsCampbell Barton
2018-07-01Merge branch 'master' into blender2.8Campbell Barton
2018-07-01RNA: use bool for boolean RNA typesCampbell Barton
We were using int's for bool arguments in BKE, just to avoid having wrapper functions.
2018-07-01Cleanup: use '_len' suffix for line stippleCampbell Barton
2018-06-30Merge branch 'master' into blender2.8Campbell Barton
2018-06-30Cleanup: rename bmesh_queries -> bmesh_queryCampbell Barton
Other files with the same purpose already used 'query'.
2018-06-29Cleanup: remove another bunch of DM usages, includes etc.Bastien Montagne
2018-06-29Keymap: minimal default keymapCampbell Barton
Use 2.7x keymap preset for full keymap. Use define to allow further adjustments. See T55666.
2018-06-29Merge branch 'master' into blender2.8Campbell Barton
2018-06-29Cleanup: trailing newlinesCampbell Barton
2018-06-28UI: keep some operator text in headers.Brecht Van Lommel
Key shortcuts and explanation about how to use the tool should go to the status bar, but other info can in the header so it's near where the user is working. This distinction has not been made yet for all operators.
2018-06-28Manipulator: regression from removing keymapsCampbell Barton
Keymaps were used to check which tool was active.
2018-06-28gl cleanup: fix wrong cast in bf_editor_transformRay Molenkamp
2018-06-28GLRefactor: partially remove gl calls from source/blender/editors.Ray Molenkamp
This translates the gl calls to the new GPU_ wrappers from D3501. Given it's tedious and repetitive work, this patch does as much as it can with search + replace, the remainder of the gl calls will need to be manually dealt with on a case by case basis. This fixes 13 of the 28 failing editors when building without opengl. For the list of substitutions see D3502 Reviewers: brecht Differential Revision: https://developer.blender.org/D3502
2018-06-26UI: move modal operator text from headers to status bar.Brecht Van Lommel
Python API is context.workspace.status_text_set()
2018-06-23Manipulator: fix issue refreshing transform toolCampbell Barton
Changing manipulator types failed.
2018-06-22Tool System: transform can now toggle loc/rot/scaleCampbell Barton
2018-06-22Cleanup: Moar DM busting from editor code area.Bastien Montagne
2018-06-21Fix T55573: Mode rotate on local axis crashesCampbell Barton
2018-06-15Fix T55443: Manipulators not refreshingDalai Felinto
2018-06-15Fix mouse input overwriting transform redo valuesCampbell Barton
Redo trackball rotate and edge slide weren't working. Caused by re-ordering of initialization 47de0321bf68c
2018-06-14Transform: Suppress assert w/ vertex paintCampbell Barton
2018-06-143D View: Show view-aligned rotation manipulatorsCampbell Barton
2018-06-143D View: Tweak transform plane manipulator fadingCampbell Barton
The threshold to fade out and hide was too small.
2018-06-143D View: increase size of view aligned rotationCampbell Barton
Minor changes based on user feedback. - View aligned rotation manipulator overlapped too often with axis aligned widgets. Increase size (matching 2.79) - Offset arrow-heads when combining rotate & translate, don't draw the stem since it overlaps with scale.
2018-06-13Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: source/blender/blenkernel/BKE_pointcache.h source/blender/blenkernel/intern/object.c source/blender/blenkernel/intern/pointcache.c source/blender/editors/include/ED_particle.h source/blender/editors/physics/particle_edit.c source/blender/editors/physics/particle_edit_undo.c source/blender/editors/physics/particle_object.c source/blender/editors/physics/physics_intern.h source/blender/editors/physics/physics_pointcache.c source/blender/editors/space_time/space_time.c source/blender/editors/space_view3d/drawobject.c source/blender/editors/space_view3d/view3d_edit.c source/blender/editors/transform/transform_conversions.c source/blender/editors/transform/transform_generics.c source/blender/editors/transform/transform_manipulator.c source/blender/makesrna/intern/rna_object.c source/blender/makesrna/intern/rna_object_force.c source/blender/makesrna/intern/rna_sculpt_paint.c source/blenderplayer/bad_level_call_stubs/stubs.c
2018-06-13Cleanup: moar ugly G.main removal...Bastien Montagne
Note that due to RNA get/setters issue, that one may actually add some G.main usages to the total... But at least it's not hidden anymore in a very low-level, dark corner of BKE pointcache code!
2018-06-13Manipulator: Skip redundant transform updatesCampbell Barton
Partially address T55458
2018-06-13UI: shorten proportional edit nameCampbell Barton
Didn't fit in panel.
2018-06-12WM: hide internal operator settingsCampbell Barton
These are set in the interface and aren't useful to show to users. Other minor changes - Rename 'Ruler/Protractor' -> 'Ruler' - Rename Subdivide 'Quad/Tri Mode' -> 'Create N-Gons' (and invert).
2018-06-12Cleanup: moar G.main removal from BKE area.Bastien Montagne
2018-06-12Cleanup: get rid of global RNG usage in transform code.Bastien Montagne
2018-06-11Cleanup: fix compiler warnings.Brecht Van Lommel
2018-06-11Fix T55440: Pose Mode CrashDalai Felinto
2018-06-11Cleanup: Moar G.main removal of Hell.Bastien Montagne
This commit actually adds some G.main... but at much, much higher level than the ones it removes, so should still be better ;)
2018-06-09Merge branch 'master' into blender2.8Bastien Montagne
Conflicts: source/blender/editors/space_view3d/drawobject.c