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
2010-10-08fix for console selection when pasting.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-08Fix #23358: template_curve_mapping doesn't work in split viewsSergey Sharybin
2010-10-08bugfix [#21610] alt-r for bone (reset rotation) doesnt work in weight ↵Campbell Barton
painting mode pose operators now run in weightpaint mode when the weight paint objects pose armature is in pose mode.
2010-10-07Fix #24167: Timeline keyframes don't update when selecting objects from outlinerSergey Sharybin
Based on patch from Alexander Kuznetsov. Own changes: - Keyframes in timelime depends on active object, so timelime better be listeing to ND_OB_ACTIVE notifier rather than ND_OB_SELECT - When scene is changing in this operator NC_WINDOW notifier would be send and the whole interface would be redrawed, so no need in ND_OB_ACTIVE in this case
2010-10-07Fix #24180: Make duplicates real doesn't update immediatly the outlinerSergey Sharybin
2010-10-07Fix for [#22250] Retopo projects to the wrong object when multiple objects ↵Janne Karhu
are behind. * Scaling of objects wasn't properly taken into account when projecting the verts.
2010-10-07misc fixes found with clang's static checker.Campbell Barton
2010-10-07bugfix [#24158] Object text fields immediately search based on existing contentCampbell Barton
also remove some unused struct members from uiBlock/uiBut.
2010-10-07remove calls to WM_event_add_mousemove r22031, from view2d operators since ↵Campbell Barton
it would cause a feedback loop where the operator apply function would keep using mousemove events and creating them. This was added for view updates but think it needs to be solved a better way.
2010-10-06bugfix [#23311] Half a colour picker appearsCampbell Barton
all popups which are positioned based on an existing button are now clamped to window bounds.
2010-10-06[#24063] Error in RNA naming in SequenceCrop.min_x/y ;Campbell Barton
[#24153] Typo
2010-10-06Unhide confirm on release property (otherwise, it's not easily modifiable in ↵Martin Poirier
the keymap editor).
2010-10-05rename Command key to OSKey, Window manager already called it the OSKey but ↵Campbell Barton
internally it was mixed.
2010-10-05bugfix [#24148] unable to get keyboard mappings to work in the text windowCampbell Barton
this exposes another problem: RNA_property_is_set cant be used on properties set from a keymap, they are always set. for now check for string length.
2010-10-05patch [#24125] Fix for Slider Widget (UI)Campbell Barton
from Alexander Kuznetsov (alexk)
2010-10-05patch [#24146] UV layout selection menu in UV editor ala CTRL+TAB in edit modeCampbell Barton
2010-10-05bugfix [#24122] Shift-C doesn't work in "Camera View"Campbell Barton
also fixed some glitches with smoothview.
2010-10-05Fix #24135: Material modification not immediately updated in OutlinerSergey Sharybin
Also fixed outliner update when changing active_material_index from Py and when selecting texture from UI
2010-10-05bugfix [#23506] Bevel Modifier display problemCampbell Barton
This is a more general problem that drawing functions would skip faces when the original index could not be found, screw result for example wasnt visible in editmode too. Fixed by adding a material set argument to DerivedMesh->drawMappedFaces(), this was already being done in some of the other drawing functions.
2010-10-05- fix for crash when drawing a subsurf after a modifier that lost original ↵Campbell Barton
indices (bevel/screw/decimate) - fix for own mistake used madd_v3_v3fl rather then mul_v3_v3fl, r32241.
2010-10-05Reorganisation of COLLADA import code. Classes have been split into their ↵Nathan Letwory
own files. No functional changes. Where necessary extern "C" {} blocks have been added.
2010-10-04[#22825] Copy Scenes with Audio Strip Crash.Campbell Barton
2010-10-04fix for copy in the console (wasnt taking the prompt into account)Campbell Barton
2010-10-03added len_squared_v2v2, use instead of len_v3v3 for font handle tests, also ↵Campbell Barton
fixed some warnings.
2010-10-03- rna bugfix where ints were not clamped and would overflow, now raise an ↵Campbell Barton
error and print valid range. - fixed WM_OT_context_cycle_int was causing problems with int overflow, now it cycles properly. - rename QUOTE macro to STRINGIFY_ARG, and added STRINGIFY, which is used more often since it gives the value as a string.
2010-10-03python console prompt + edit line is how selectable.Campbell Barton
2010-10-03py/rna access to setting the header text - can be used in modal operators.Campbell Barton
eg: context.area.header_text_set("Some Text") included example in the view3d modal operator template.
2010-10-03Redraw object buttons on next/previous frame in 3dview, otherwise for instanceNathan Letwory
Transform panel won't get updated for keyed objects.
2010-10-02set the view3d used layer to be an unsigned int, mask out localview layers ↵Campbell Barton
to avoid flag mismatch when checking if it changed.
2010-10-02for view layer calculation, only break early if all layers are set, was ↵Campbell Barton
breaking if any layer was set.
2010-10-02Fix #22348: disabled image editor curves on non-float images, this neverBrecht Van Lommel
worked correct, only got enabled accidentally in 2.5 port.
2010-10-02make fly mode border draw into a area drawing callback rather then using a ↵Campbell Barton
flag (no functional change).
2010-10-02move window matrix translation into its own function. (no functional changes)Campbell Barton
2010-10-02Anti-Aliasing support for opengl render (belated durian todo),Campbell Barton
Simple FSA accumulation method means no fancy opengl features needed. Fixed at 5 samples per pixel for now.
2010-10-02Fix for last fix, should have checked it actually worked :)Brecht Van Lommel
2010-10-02Fix #24077: convert operator not updating outliner. Note about notifiers:Brecht Van Lommel
NC_SCENE|NC_OBJECT does not work, you can only have one NC/ND/NA in a single notifier, if you need to do both, use two notifiers.
2010-10-02Fix #24103: copy logic bricks to objects with the same data didn't work.Brecht Van Lommel
Don't know why this check was here, it wasn't there in 2.49 and it's not necessary.
2010-10-02Fix #24096: shift+A add menu not working in pose mode. Useful to have itBrecht Van Lommel
here too for rigging.
2010-10-02Fix #23629: Layers doesn't sign there are objects on them, only if the ↵Sergey Sharybin
object is selected Also fixed layer buttons update when changing scene/screen
2010-10-01minor adjustment to camera object drawing so arrow stays same size ↵Campbell Barton
independent of aspect.
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-10-01Fix #24074: shift+MMB didn't pan in image editor like other 2d views.Brecht Van Lommel
2010-09-30Fix #24067: sculpt brush/texture preview would disappear when overlappingBrecht Van Lommel
with the region boundary. Use glaDrawPixelsSafe like e.g. the image editor to prevent this.
2010-09-302d grease pencil thickness was double with width it should have been.Campbell Barton
2010-09-30[#24066] Menu_Items_GreyedCampbell Barton
revert fix for bug #24009, this made menu items fail poll()
2010-09-30Patch #24056: Indicate keyed status of swatchesJoshua Leung
Submitted by: Shane Ambler (sambler) <quote> From blenderstorm idea# 169 this patch changes the swatch button to display a border showing the keyed status colour of the colour. I chose to go with showing the keyed colour in a border around the swatch, insetting the size of the swatch colour to prevent altering the sizing of the swatch. An un-keyed swatch is not altered visually, only a keyed colour swatch is changed to have the keyed colour around the outside of the swatch button. I think a border of 3 pixels is sufficient to make the keyed colour visible without taking too much of the colour area away. </quote>
2010-09-30Cleanup of Auto-Keyframing code:Joshua Leung
Moved duplicated code out to a special new function so that this doesn't need to be copied all over for each transform op that needs this.
2010-09-30Bugfix #23707: Autokey Available is ignored on a Clear TransformJoshua Leung
Second attempt at fixing. Last time, I missed the case where the "Only Insert Available" userpref was enabled, which was why the bugreport was reopened. Hopefully I haven't missed anything else...