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
2020-08-14UI: Remove cutoff text in popovers for 2.90 releaseHans Goudey
Many of these popovers could use a design pass in 2.91, but for 2.90 we don't want to change any UI strings at this point, so the best way to solve the cutoff text is to widen the popovers. Sadly this won't affect popovers when other languages besides English have longer strings, but solving that is a much larger task. Another benefit is that tweaking sculpt / paint brush options feels much less cramped with slightly wider popovers. I only know of one string that is still slightly cutoff by default with this patch, the "Max Element Distance" property of the pose brush in the sculpt mode brush settings popover. But I didn't think it was worth widening that popover more to deal with that one case. Differential Revision: https://developer.blender.org/D8575
2020-08-14Fix: Increase Viewport Sculpt Options panel widthDalai Felinto
The "Delay Viewport Update" label was showing only: "Delay Viewport U..."
2020-08-14Fix (unreported) sculpt vertex color panel visible for all object typesPhilipp Oeser
Since DATA_PT_sculpt_vertex_colors has its own poll() we need to call the poll() of MeshButtonsPanel as well Differential Revision: https://developer.blender.org/D8563
2020-08-13UI: Add sculpt cloth filter tool iconHans Goudey
This icon mimics the details of the cloth brush icon while using the frame style extablished for the other "filter" tools. Differential Revision: https://developer.blender.org/D8467
2020-08-13Preferences: correct property description for keyitem restorePhilipp Oeser
Spotted while checking T79657. Reviewers: brecht Differential Revision: https://developer.blender.org/D8517
2020-08-12Fix T79738: Double Click does not opening folders in File BrowserJulian Eisel
If the File Browser was used in regular editor mode (e.g. not through an operation like File > Open), the operator that usually opens files and directories wouldn't execute. We need to keep two operators for double-click in the keymap so selecting and opening works in all cases. Caused by c606044157a3.
2020-08-12Fix T79708: ShapeKey value greyed outPhilipp Oeser
Mistake in rB0e9999a93edd. Maniphest Tasks: T79708 Differential Revision: https://developer.blender.org/D8539
2020-08-05Fix double-click not opening directories on some touch-padsJulian Eisel
The file.execute() operator is the one that actually opened directories and files, not file.select() with the "open" option, as it was assumed when changing the keymap to double-click for opening. It only acts on the current selection though, so we have to ensure the selection is set on the first click. Now, some touch-pads have a delay until they register a click event, so the double-click would be registered instead, before the selection is set. Always select on mouse-down now and remove the unnecessary select operator call on double-click.
2020-08-05Audaspace: port documentation bugfix from upstream.Joerg Mueller
2020-08-05Keymap: add back Shift-K to cut-through selected facesAaron Carlisle
Resolves T78540
2020-08-04Cleanup: typos & co in UI messages (and some other places).Bastien Montagne
2020-07-28Transform: Correct Face Attributes: Option to merge attributesGermano Cavalcante
Keeping face attributes connected is now optional. Keeping UV's connected is useful for organic modeling, but bad for architectural. Differential Revision: https://developer.blender.org/D8360
2020-07-28Fix T79031: Batch Generate-Previews doesn't work anymorePhilipp Oeser
Caused by rB19785b96c43f. Maniphest Tasks: T79031 Differential Revision: https://developer.blender.org/D8400
2020-07-28Fix T77951: Remove duplicate outliner menu entriesNathan Craddock
Move the common entries (View and Area) into a static method to be called from other menus to avoid duplicating the New Collection and ID Paste operators.
2020-07-27RNA to Manual: Update linksAaron Carlisle
2020-07-26Fluid: Added new option to control the maximum number fluid particles in the ↵Sebastián Barschkis
simulation New option that lets users the define the maximum number of fluid particles that will be allowed in the simulation. This can come in handy, for example, to ensure that the particle count will not exceed the hardware capabilities, or to avoid excessive amounts of particles in a scene.
2020-07-24Fix T79209: Empties have disabled viewport display settingsCampbell Barton
2020-07-24Fix shape key pin toggle drawing as disabled in edit-modeCampbell Barton
Pin can be used in edit-mode when shape key in edit-mode is enabled.
2020-07-23UI: disable add-object tool for 2.90 releaseCampbell Barton
This needs improvements which need user testing before this can be considered finished, even on a basic level.
2020-07-22Ensure submodules are at their correct commits.Nathan Letwory
2020-07-22Object: add-object option to place on the surface normalCampbell Barton
Optionally use the surface normal under the mouse cursor.
2020-07-22Cleanup: use elif for sculpt tool checksCampbell Barton
2020-07-21Sculpt: Add extra deform types to SlidePablo Dobarro
This adds extra deform modes to the slide mode of the Topology Slide/Relax brush (both slide and smear are almost identical). This is useful to move topology to a specific area to add more localized details Reviewed By: sergey Differential Revision: https://developer.blender.org/D8349
2020-07-21UI: Small changes to bevel active tool layoutHans Goudey
- Exposes affect enum in the header instead of profile type. - Add two missing options from the operator
2020-07-21Sculpt: Support pen pressure modulation in Paint Brush propertiesPablo Dobarro
This allows to use pen pressure modulation in hardness, wet mix, wet persistence, flow and density, as well as inverting the modulation (more pressure, less density...). With this, it is possible to create brushes that mix paint or apply a new color based on the pressure. Reviewed By: sergey, campbellbarton Differential Revision: https://developer.blender.org/D8267
2020-07-21Bevel: Refactor "Vertex Only" to an enumHans Goudey
This matches the change that was done to the bevel modifier so that the interface for the modifier, the active tool, and the operator are consistent. This commit extends the refactor to the bmesh implementation too, so that the parameters in the implementation don't stray too far from what is exposed. Tests are adjusted and still pass.
2020-07-21Particles: initial object socket and emitter node supportJacques Lucke
Object sockets work now, but only the new Object Transforms and the Particle Mesh Emitter node use it. The emitter does not actually use the mesh surface yet. Instead, new particles are just emitted around the origin of the object. Internally, handles to object data blocks are passed around in the network, instead of raw object pointers. Using handles has a couple of benefits: * The caller of the function has control over which handles can be resolved and therefore limit access to specific data. The set of data blocks that is accessed by a node tree should be known statically. This is necessary for a proper integration with the dependency graph. * When the pointer to an object changes (e.g. after restarting Blender), all handles are still valid. * When an object is deleted, the handle is invalidated without causing crashes. * The handle is just an integer that can be stored per particle and can be cached easily. The mapping between handles and their corresponding data blocks is stored in the Simulation data block.
2020-07-21GPencil: Reorganize Snap pie menuAntonio Vazquez
Put the options in the same position of meshes. related to T79094
2020-07-20Fix weird placement of "Motion Tracking" in 3D View overlay popupJulian Eisel
There was a weird looking gap between the checkbox and the "Motion Tracking" label. Plus, the label could not be clicked to change the value, unlike usually. Issue is that the row is actually a sub-panel header. The checkbox being drawn with the draw_header() callback, and the label being added as separate item by the popover panel code. This adds a hack so the checkbox can add the panel label itself (the popup drawing skips adding the label then). That addresses mentioned issues.
2020-07-20UI: Fix File Broswer filter checkbox not connected to labelAdrian Newton
Differential Revision: https://developer.blender.org/D8168 Reviewed by: Hans Goudey, Julian Eisel
2020-07-20Fix T79075: Tool popup fails with experimental vertex colors enabledCampbell Barton
Register key-maps from tools in functions.
2020-07-20GPencil: Fix unreported wrong SNAP menu in Point Context menuAntonio Vazquez
It was using the mesh menu instead of GPencil one.
2020-07-20Fix T79094: GPencil Snap menu with Shift+S not pie menuAntonio Vazquez
In order to keep UI consistency, now it's a pie menu.
2020-07-18UI: Status Bar Statistics and Other OptionsHarley Acheson
Status Bar can show scene statistics, memory usage, version, etc set by context menu. Part two of T75672. Differential Revision: https://developer.blender.org/D7557 Reviewed by Julian Eisel
2020-07-18UV: edge-ring selection supportCampbell Barton
Matches edit-mesh edge-ring selection.
2020-07-18UI: Use property split for custom property edit popoverHans Goudey
The panel looks out of place with the rest of Blender's UI and the text is cropped. With property split turned on and a few smaller tweaks these issues are fixed. | Before | After | |{F8700181}|{F8700183}| Differential Revision: https://developer.blender.org/D8322
2020-07-17Cleanup: remove f-string use in favor of percentage for formattingCampbell Barton
2020-07-16UI: Add shortcuts for constraint panelsHans Goudey
Only the delete shortcut applies here, although the move up and down operators can optionally be assigned in the keymap. See rB1fa40c9f8a81 for more details and rB5d2005cbb54b for the grease pencil modifier panel implementation, which is the same. Some refactoring of the constraint delete operator was necessary, including adding an invoke function. Differential Revision: https://developer.blender.org/D8238
2020-07-16macOS: improve design of .dmg backgroundFrancesco Siddi
Differential Revision: https://developer.blender.org/D8300
2020-07-16Keymap: disable 'Alt' click for tools prompt by defaultCampbell Barton
Based on feedback from artists in the Blender Studio this is too easy to access by accident. This is still accessible as a preference.
2020-07-16UI: show connected icon for proportional editing in the image spaceCampbell Barton
2020-07-16Fix View3D "Mirror" menu, both "Global" and "Local" items are GLOBALYevgeny Makarov
2020-07-15UV: support region fill for path selectCampbell Barton
This matches edit-mesh region selection (Ctrl-Shift-Select).
2020-07-15Cleanup: Replace 0 with False for boolean argumentHans Goudey
2020-07-15Fix T68845: Follow Active Quads, divide by zero errorCampbell Barton
2020-07-15UI: Add manifold extrude to extrude menuLiam Scaife
2020-07-14LibOverride: fix for removing `use_override_library` in rB3d587efef2872.Bastien Montagne
Thanks to @JacquesLucke for the heads up.
2020-07-13Sculpt: Add extra deform types to SmearPablo Dobarro
The smear brush was using the stroke direction to slide colors across the mesh surface (this is called drag in other sculpt tools). Similarly, other deformations can be included. The most common ones in image editing are pinch and expand, which can be used to sharpen transitions between colors. Reviewed By: sergey Differential Revision: https://developer.blender.org/D8270
2020-07-13Fix wrong variable name in Sculpt Vertex Colors experimental checkPablo Dobarro
Reviewed By: sergey Differential Revision: https://developer.blender.org/D8269
2020-07-13Sculpt: Enable color palettes for sculpt vertex colorsPablo Dobarro
Enables the color palette subpanel for brushes that have color capabilities (only the paint brush for now) Reviewed By: sergey Differential Revision: https://developer.blender.org/D8268