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
2011-04-21pass even mouse coords value as const so its not edited, ↵Campbell Barton
view3d_get_view_aligned_coordinate() could modify the event->mval.
2011-04-21remove checks on deprecated multires pointer.Campbell Barton
2011-04-19patch [#26978] Minor Spelling Mistakes in Editor OperatorsCampbell Barton
+ some errors I noticed.
2011-04-14fix [#26931] Shift+Alt+RMB only selects loops, can't deselect them - 2.57 ↵Campbell Barton
official own fault with fix [#26885] for selected edges having de-selected verts in some cases.
2011-04-12fix [#26885] transform option disapears when deselecting loopsCampbell Barton
deselecting edgeloop & edgering would leave the verts de-selected even if other edges had them selected.
2011-03-28- quiet new warnings with gcc 4.6Campbell Barton
- use BLI math funcs for normal float/short conversion. - correct some un-intentional float/double promotions.
2011-03-10also enable edge-seam unwrapping when running the mark_seam operator.Campbell Barton
2011-03-10request from Jedrzej Slewczuk's:Campbell Barton
Option for tagging creases (Ctrl+RMB) to also re-unwrap the mesh. In 2.42 this could be done by setting rt==8 (very hidden), now its a little less hidden (in the toolbar).
2011-02-27doxygen: blender/editors tagged.Nathan Letwory
2011-02-24remove unused functions, aligning to selection can be done with ↵Campbell Barton
Shift+Numpad, uses manipulator code.
2011-02-23doxygen: prevent GPL license block from being parsed as doxygen comment.Nathan Letwory
2011-02-18Clear some compiler warnings by commenting some functions, adding others to ↵Campbell Barton
headers. left in warnings where functions obviously need to get ported to 2.5x still. Also, render stamp seq strip works again.
2011-02-14made most variables which are only used in a single file and not defined in ↵Campbell Barton
header static for blenlib, blenkernel and editors.
2011-02-13Added an operator warning for missing material & texture in response to ↵Janne Karhu
[#26051] "Noise" not working.
2011-01-30Bugfix #25870Ton Roosendaal
Operator "Select linked flat faces" didn't initialize the default angle. That made it fail being called via menus.
2011-01-15Bugfix #25636Ton Roosendaal
On using loop-selects, the active vertex got cleared, it could still simply indicate one of the vertices of indicated edge to become active. That keeps the Ui for vertex-groups drawing correct, for example. Also made loop-ring select store active edge for tools, like the loop-select.
2011-01-13remove/comment unused varsCampbell Barton
also removed unnecessary NULL checks (where the pointer was used later without checking).
2011-01-07split BKE_utildefines.h, now it only has blender specific defines like GS() ↵Campbell Barton
MAKE_ID, FILE_MAXDIR, moved the generic defines to BLI_utildefines.h. no functional changes.
2011-01-03DAG_id_tag_update was being called with non object ID's and OB_RECALC_* ↵Campbell Barton
flags which only apply to objects. harmless but misleading.
2010-12-21Error/Warning report flipping.Ton Roosendaal
An operator Error throws up a menu, a Warning only a flashy header print. In mesh editmode the menus for simple failures got very annoying, like "Already a face" for Fkey on a face. Proposal is to use warning for contextual failures, like: - wrong selection - unsupported combination - wrong modes And use errors for cases you really need user attention, for example when issues are invisble or potentially damaging work. - Memory failures - Files not found List can grow in future :) let's test this for mesh now. I'll tackle this for other ops later after review. (Also changed: loopcut disabled when editmode shows deformed result)
2010-12-15remove unused args.Campbell Barton
2010-12-15Exposed mesh edit 'select similar' threshold as operator property, must have ↵Matt Ebb
been missed before.
2010-12-05Dependency graph: changed DAG_id_flush_update to DAG_id_tag_update. Now itBrecht Van Lommel
only tags the ID and does the actual flush/update delayed, before the next redraw. For objects the update was already delayed, just flushing wasn't yet. This should help performance in python and animation editors, by making calls to RNA property update quicker. Still need to add calls in a few places where this was previously avoided due to bad performance.
2010-12-03- added GCC warning -Wstrict-prototypesCampbell Barton
- fixed bug in paste material, exposed by stricter warnings. - removed/renamed various shadowed vars. - removed BGE lamp.colour, only allow lamp.color attribute.
2010-11-10Bugfix #24524Ton Roosendaal
Mesh loop tools allowed to be invoked outside 3d region (properties). That caused crash, it needs 3d view code to work.
2010-11-07patch [#24577] MESH_OT_noise. Adds missing 2.4x noise vertex displace ↵Campbell Barton
functionality. from Dan Eicher (dna) Also added a factor option so you can adjust the amount of noise applied.
2010-11-02bugfix [#24398] Select NthCampbell Barton
- use first selected if non active (clears confusion since this isn't at all clear) - dont take unselected into account when calculating connectivity, would mess up in many cases.
2010-10-16most unused arg warnings corrected.Campbell Barton
- removed deprecated bitmap arg from IMB_allocImBuf (plugins will need updating). - mostly tagged UNUSED() since some of these functions look like they may need to have the arguments used later.
2010-10-15tag UNUSED() for operator exec() and invoke() functions.Campbell Barton
2010-10-08bugfix [#24179] Button "Loop Cut and Slide" on Mesh Tools not workCampbell Barton
also added a message in the tooltip to say `why` a buttons disabled. depends on the operators poll setting the message.
2010-10-01Add distance check in lasso generation to get a smoother lasso.Nathan Letwory
Hopefully this helps with lasso select troubles [#21179].
2010-10-01attempt to fix [#21179] r26939 - Lasso tool does not work when drawing ↵Campbell Barton
counter clock wise can't test this so guessing this is caused by face culling.
2010-09-27bugfix [#23995] Do loop cuts from the space bar search while in the ↵Campbell Barton
properties panel crashes blender.
2010-09-23bugfix [#23595] Texture paint with a node based brush produces artifactsCampbell Barton
also changed displace modifier not to link object depgraph when not using object texturespace.
2010-09-21bug report [#23933] "Select Linked" with "Limit by Seams" only working for ↵Campbell Barton
Face Mode selection This is intentional so include in tooltip
2010-08-16- remove unused includes IMB_*, BIF_* & MEM_*Campbell Barton
- remove MEM_guardedalloc.h from header files (include directly)
2010-08-08remove unused includesCampbell Barton
2010-07-30bugfix [#20038] Vertex path selection not working in Vertex/Face modeCampbell Barton
- disable this tool if edge mode isnt enabled using its poll function. Also fixed a bug where it would de-select the last active edge. - made view3d grid drawing use GL_LINES's for less context switching.
2010-07-22Fix de/select all operator naming for consistencyMatt Ebb
2010-07-17spelling correction: alredy --> alreadyCampbell Barton
2010-06-23Fix #21369: normals on extruded text and curve objects were flippedBrecht Van Lommel
for the backside, giving problems with e.g. boolean operations.
2010-06-01just a small commit to get myself back into thge swing of thingsMichael Fox
via a request there is now axis control in the vertes smooth operator (really small easy to remove if no one likes )
2010-04-24warning cleanup, also made voxel.c and volumetric.c use BM_INLINE define ↵Campbell Barton
rather then having their own ifdefs in each file.
2010-04-21replace add_v3_v3v3() --> add_v3_v3() where possibleCampbell Barton
2010-04-17bugfix and cleanupCampbell Barton
- BGE Shader.setSampler(name, index): index range check was wrong. - Compositor check for an invalid channel was incorrect. - getting the center of selected verts used an uninitalized z axis. - do_init_render_material() used && rather then & when testing for MA_TRANSP. - weight paint activate flipped bone used && rather then & for flag checking.
2010-04-01Fix [#21860] Quads/Triangles Selection miss to mark some Edges.Matt Ebb
2010-03-29Fix [#21679] add_grid "operator's subdivison" Change Dimensions Matt Ebb
2010-03-23more lint includesCampbell Barton
Only source/blender/editors/ dir, should not give errors on different platforms Only removing: UI_*.h, ED_*.h, WM_*.h, DNA_*.h, IMB_*.h, RNA_*.h, PIL_*.h
2010-03-22spaces -> tabs, (4 spaces == 1 tab, only for white space preceding text)Campbell Barton
2010-03-21Fix syntax for ID keyword.Guillermo S. Romero