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
2014-11-16Cleanup: use BLI_listbase_*** prefix for count,sort,sort_rCampbell Barton
2014-11-16Bugfix T41525: Button keyframe indicators don't work correctly when editing ↵Joshua Leung
NLA Strips When the active action is a NLA strip, the keyframe indicator colors for buttons and the 3D view indicator (i.e. the current frame indicator changes color) didn't work correctly. This was because they were still checking for keyframes in "global" time space, whereas they needed to be applying NLA corrections to "look inside" the remapped action.
2014-11-11UI: remove unused emboss-table defineCampbell Barton
2014-11-11UI Refactor T41640Campbell Barton
Make the UI API more consistent and reduce confusion with some naming. mainly: - API function calls - enum values some internal static functions have been left for now
2014-10-28Fix T41041: 'Delete keyframe' removes markers tooCampbell Barton
Operators that trigger UI events (but nothing else) were using 'CANCELLED' making it impossible to tell if an invoke function failed, or opened a menu.
2014-10-28Cleanup: de-duplicate engine-id'sCampbell Barton
2014-10-10Fix T42163: Outliner: recursive visibility toggle: autokeyframe only works ↵Bastien Montagne
for ancestor, not children Ancestor's autokeyframing is handled through UI/buttons code, but children completely skipped this, so we have to do it explicitely here...
2014-10-08Ghost Context RefactorJason Wilkins
https://developer.blender.org/D643 Separates graphics context creation from window code in Ghost so that they can vary separately.
2014-07-19Defines: replace ELEM3-16 with ELEM(...), that can take varargsCampbell Barton
2014-07-06Outliner: Added option to RMB menu for "Animation" entries to remove these ↵Joshua Leung
and their data
2014-05-20Fix part of T35600: Outliner did not update when renaming armature bone names.Bastien Montagne
2014-05-08Freestyle: hide line styles from a scene in the Outliner when WITH_FREESTYLE ↵Tamito Kajiyama
build flag is off. The Datablocks display mode still shows line style ID datablocks to keep track of line styles hidden from user interactions in the Properties window.
2014-05-05Fix: T40016 ID Names translated in menusCampbell Barton
2014-05-03Minor code style fix.Tamito Kajiyama
2014-05-03Added changes to unlink textures from line styles in the Outliner.Tamito Kajiyama
2014-05-03Added changes to show textures as part of line styles in the Outliner.Tamito Kajiyama
2014-05-01Include removal gave problems with windows, ifdef some back in for windows onlyCampbell Barton
2014-05-01Revert "Fix msvc 2013 compiler errors after the ingenious cleanup in ↵Campbell Barton
4ca67869cc7a." This reverts commit a47a4ef82f37428d391cc14a30fa611d6714e71d.
2014-05-01Fix msvc 2013 compiler errors after the ingenious cleanup in 4ca67869cc7a.Thomas Dinges
2014-04-30Code cleanup: remove unused includesCampbell Barton
Opted to keep includes if they are used indirectly (even if removing is possible).
2014-04-28Fix T39692: Text fields in datablocks editor are brokenBastien Montagne
Make RNAPointer props un-editable here, we simply cannot handle this. Also correct previous commit, asking for autonaming for all items was a bit extreme, this is only needed for enums!
2014-04-27Fix another part of T39692 Text fields in datablocks editor are broken.Bastien Montagne
Broken enums widgets was a sequel of rBe5e0888a8f02 (when we want auto-naming, we have to pass NULL, not and empty string!). Now remains the RNApointers issue...
2014-04-21View2d: API Cleanup for view<->region conversionCampbell Barton
View2D had some inconsistencies making it error prone in some cases. - Inconstant checking for NULL x/y args. Disallow NULL args for x/y destination pointers, instead add: - UI_view2d_region_to_view_x/y - UI_view2d_view_to_region_x/y - '_no_clip' suffix wasn't always used for non-clipping conversion, switch it around and use a '_clip' suffix for all funcs that clip. - UI_view2d_text_cache_add now clips before adding cache. - '_clip' funcs return a bool to quickly check if its in the view. - add conversion for rectangles, since this is a common task: - UI_view2d_view_to_region_rcti - UI_view2d_region_to_view_rctf
2014-04-01Code cleanup: remove TRUE/FALSE & WITH_BOOL_COMPAT defineCampbell Barton
2014-03-24Fix T39383: Blender crash when renaming bone in outliner (weight paint mode).Bastien Montagne
Outliner rename callback is supposed to activate affected element before actually renaming, but for bones this was not working because the function used to activate the object explicitely ignored ID_OB case! Added a bool flag to allow handing this case without (possibly) breaking the other usecases.
2014-03-20Code cleanup: use true/false in sequencer functionsSergey Sharybin
2014-03-03Icon for LineStyleCampbell Barton
patch T37008 from Michael P.
2014-02-07ListBase API: add utility api funcs for clearing and checking emptyCampbell Barton
2014-02-05Fix T38471: parenting in the outliner was possible with library linked objects.Brecht Van Lommel
2014-02-04Code cleanup: declarations for removed functionsCampbell Barton
2014-02-03Code cleanup: use bools where possibleCampbell Barton
2014-01-23Code Cleanup: find operator once and reuseCampbell Barton
2014-01-17Outliner: minor speedup for drawing, avoid 3 rna lookups per objectCampbell Barton
also for movie-clip dope-sheet
2014-01-16Correct error in own recent commitCampbell Barton
2014-01-16Code Cleanup: outliner used magic numbers for active items and selectingCampbell Barton
Replace with enums to make it more obvious whats happening
2014-01-16Compilation error fix: mismatch declarationSergey Sharybin
2014-01-16Code Cleanup: style and redundant castsCampbell Barton
2013-12-22Modifier: New Wireframe ModifierCampbell Barton
Based on patch originally by Thomas Beck, uses options similar to solidify.
2013-11-25Code Cleanup: rename vars for detecting change to be more consistentCampbell Barton
rename change/is_change/is_changed/modified -> changed also use bools over int/short/char and once accidental float.
2013-11-25Code cleanup: remove unused include dirsCampbell Barton
2013-11-24Mesh Modifiers: Added Laplacian DeformAlexander Pinzon
Part of soc-2013-sketch_mesh branch See: http://wiki.blender.org/index.php/User:Apinzonf/Doc:2.6/Manual/Modifiers/Deform/Laplacian_Deform
2013-11-06code cleanup: typo and warning when openmp's disabled.Campbell Barton
2013-11-05Bugfix [#37304] Arrow Keys Stop Working When Mouse Over OutlinerJoshua Leung
Frame change hotkeys now work in the following places: 1) Outliner - Main region 2) Action/NLA Editors - Channels Region 3) Info View - Reports region Other places identified by the bugreport (but which I've decided to leave alone): - Text Editor (when no file open) - The way the keymaps work here means that this can't be done without affecting normal text editing - File Browser - What's the point of changing frames when you're about to open/save the file? - User Prefs - Is there any real point here either? Also, this is usually shown in a separate window.
2013-10-15Fix [#37077] User prefs > Input and Outliner Keymaps mismatch in representation.Bastien Montagne
Remove KeyMap mode from outliner, was an old half-finished features redondant with user preferences settings... Also moved key map item's "event type to map type" and map type defines at WM level, this is too much generic to be at RNA level. Also added a check in versionning code to convert all outdated outliner modes to a valid one (seems old 'verse' ones were not handled as well). Thanks to Brecht for reviews and advices!
2013-10-15A follow-up to Bug #37070: LineStyle appears in Outliner by default though ↵Tamito Kajiyama
Freestyle is not enabled. Line style data blocks are shown in the outliner only when the Blender Internal is used.
2013-10-14Fix for #37070: LineStyle appears in Outliner by default though Freestyle is ↵Tamito Kajiyama
not enabled.
2013-09-30fix regression [#36878], missing NULL checks for linestyle.Campbell Barton
2013-09-16replace RNA_property_array_length with RNA_property_array_check where the ↵Campbell Barton
length of the array is only used to check if the property is an array or not. (this isnt reliable since arrays can be zero length).
2013-09-13fix/workaround [#36709] Renaming multiple objects in the outliner halts the ↵Campbell Barton
interface Only show one edit button at a time (editing multiple buttons at once I never saw in other ui toolkits and its unclear what you change).
2013-09-13add back library linking warning when renaming library datablocks in the ↵Campbell Barton
outliner, also typo corrections.