aboutsummaryrefslogtreecommitdiff
path: root/tools (follow)
Commit message (Collapse)AuthorAgeFilesLines
* line/col label was changing size with each cursor move, forcing the GUI to ↵Juan Linietsky2016-07-091-0/+5
| | | | | | | resize upwards and costing considerably CPU usage. It has been changed so it won't resize the UI when modified. This will make the code editor feel a lot smoother.
* Merge pull request #5612 from TheHX/collision-polygon-pluginRémi Verschelde2016-07-091-1/+1
|\ | | | | Fix CollisionPolygon gizmo showing error icons instead of the 3d handles
| * Fix CollisionPolygon gizmo showing error icons instead of the 3d handlesFranklin Sobrinho2016-07-091-1/+1
| |
* | Merge pull request #5609 from eska014/help-search-titlesRémi Verschelde2016-07-091-1/+2
|\ \ | | | | | | Fix help search dialog titles
| * | Fix help search dialog titleseska2016-07-091-1/+2
| | |
* | | Finally fixes the infamous bug #4444, hoping to never see you again.Juan Linietsky2016-07-091-0/+9
| | | | | | | | | | | | Closes #4444.
* | | properly generate tangents only upon request, closes #5580Juan Linietsky2016-07-091-1/+1
| | |
* | | do not show help on multi node selection, array editing, etc, closes #5550Juan Linietsky2016-07-091-5/+10
|/ /
* | Cleaned up preview generation thread, fixes #5499Juan Linietsky2016-07-091-62/+70
| |
* | Merge pull request #5589 from akien-mga/pr-unused-varRémi Verschelde2016-07-091-0/+1
|\ \ | |/ |/| Removing some more unused vars and dead code
| * Remove unused variables (fourth pass) + dead codeRémi Verschelde2016-07-081-0/+1
| | | | | | | | Also fix a potential regression from 3fcb9b1ec179b99d979d4cfea9b5e3c80e4a3e33.
* | Merge pull request #5480 from paper-pauper/blender-flake8Rémi Verschelde2016-07-093-1596/+1898
|\ \ | | | | | | Made Better Collada Exporter flake8-compliant
| * | Flake8 compliance (except for unused variables)Nobody Really2016-07-093-693/+1086
| | |
| * | Comma fixNobody Really2016-07-093-563/+563
| | |
| * | Whitespace fixNobody Really2016-07-093-1455/+1364
| | |
* | | Merge pull request #5588 from J08nY/doctool-indentationRémi Verschelde2016-07-081-4/+4
|\ \ \ | | | | | | | | Doctool: change content indentation
| * | | Doctool: correct XML indentationJ08nY2016-07-071-4/+4
| | | | | | | | | | | | | | | | fixes #4483
* | | | Cleanup: drop ImportSettingsDialog, replaced by contextual actionsRémi Verschelde2016-07-084-313/+0
| | | | | | | | | | | | | | | | Note that it was already commented out.
* | | | ScenesDock: Fix regression in tree generationRémi Verschelde2016-07-081-0/+3
| |_|/ |/| | | | | | | | | | | Was a regression from 3fcb9b1ec179b99d979d4cfea9b5e3c80e4a3e33. Fixes #5590.
* | | remove warnings if a script is missing and can't be openedJuan Linietsky2016-07-071-0/+2
| | |
* | | do not allow removal of groups that come from instanced/inherited scene, ↵Juan Linietsky2016-07-071-2/+28
|/ / | | | | | | closes #5505
* | Remove unused variables (third pass) + dead codeRémi Verschelde2016-07-076-33/+2
| | | | | | | | Fixes various gcc 5.4.0 warnings for -Wunused-variable and -Wunused-but-set-variable
* | Removed unused variables (second pass) + dead codeRémi Verschelde2016-07-0728-398/+20
| | | | | | | | Fixes various gcc 5.4.0 warnings for -Wunused-variable and -Wunused-but-set-variable
* | SceneTreeDock: Fix wrong argument in _has_visible_childrenRémi Verschelde2016-07-071-3/+3
| | | | | | | | Seen while checking for unused variables, which `child` was.
* | Merge pull request #5577 from vnen/improve-quickopen-listingRémi Verschelde2016-07-072-14/+25
|\ \ | | | | | | Improve quick open sorting
| * | Improve quick open sortingGeorge Marques2016-07-062-14/+25
| | | | | | | | | | | | | | | | | | Perfect matches and substrings will be shown first. Similar matches will be at the bottom. When they score is the same they're shown in the natural file system order.
* | | Fix the +1 button to insert keyframes in Sprite and Sprite3D, closes #5422Juan Linietsky2016-07-063-5/+3
| | |
* | | Only allow built-in scripts to be edited when the scene they belong to is ↵Juan Linietsky2016-07-064-4/+84
| | | | | | | | | | | | loaded, closes #5403
* | | Initialize the SSL certificates in the project managerRémi Verschelde2016-07-061-1/+3
|/ /
* | Make sure builtin types' constants remain in orderGeorge Marques2016-07-051-16/+0
| | | | | | | | | | | | | | | | This adds a list of constants for VariantCall to make sure the order of register is kept when showing in the editor help and in the documentation. This also remove the sorting of constants from the doctool, so it keeps the natural order in classes.xml.
* | Revert "Fix return type for EditorResourcePreview::check_for_invalidation"Rémi Verschelde2016-07-052-2/+2
| | | | | | | | | | This reverts commit 716dfa67a3c5a0a38205179c01676e05a718d244, since it was later fixes differently with c6b55e45e9256bb41b2d045d8c61d1946de881b1...
* | added missing return valueJuan Linietsky2016-07-041-0/+2
| |
* | Merge pull request #5548 from TheHX/fix-plugin-spatial-eventRémi Verschelde2016-07-041-0/+1
|\ \ | | | | | | Fix EditorPlugin::forward_spatial_input_event in GDScripts addons
| * | Fix EditorPlugin::forward_spatial_input_event in GDScripts addonsFranklin Sobrinho2016-07-041-0/+1
| | |
* | | Merge pull request #5547 from TheHX/fix-addons-disablingRémi Verschelde2016-07-041-1/+1
|\ \ \ | | | | | | | | Fix addon disabling
| * | | Fix addon disablingFranklin Sobrinho2016-07-041-1/+1
| |/ /
* / / Fix return type for EditorResourcePreview::check_for_invalidationRémi Verschelde2016-07-042-2/+2
|/ /
* | fix to the fix, and removed some conflicting shorcutsJuan Linietsky2016-07-032-3/+4
| |
* | Avoid settings from being lost when opening project manager.Juan Linietsky2016-07-033-6/+22
| | | | | | | | Probably fixes many issues of this kind, like missing shortcuts or other settings
* | Merge pull request #5530 from Paulb23/shortcut_searchRémi Verschelde2016-07-032-14/+56
|\ \ | | | | | | Added search to shortcut config
| * | Added search to shortcut configPaulb232016-07-032-14/+56
| | |
* | | Merge pull request #5508 from djrm/spatial_editor_shortcutsRémi Verschelde2016-07-031-149/+114
|\ \ \ | | | | | | | | Added spatial editor shortcuts
| * | | Added spatial editor shortcutsDaniel J. Ramirez2016-06-301-149/+114
| | | | | | | | | | | | | | | | for now it does not support the emulate numpad setting
* | | | Merge pull request #5506 from vnen/enhance-quickopen-searchRémi Verschelde2016-07-032-17/+60
|\ \ \ \ | | | | | | | | | | Improve Quick Open search
| * | | | Improve Quick Open searchGeorge Marques2016-06-302-17/+60
| |/ / / | | | | | | | | | | | | Makes it sort by similarity with best match on top
* | | | Merge pull request #5504 from djrm/canvas_item_editor_shortcutsRémi Verschelde2016-07-031-23/+24
|\ \ \ \ | | | | | | | | | | Canvas item editor shortcuts
| * | | | Canvas item editor shortcutsDaniel J. Ramirez2016-06-291-23/+24
| | | | |
* | | | | Added proper resource preview cache invalidation, fixes #5342Juan Linietsky2016-07-037-0/+74
| |_|/ / |/| | |
* | | | Color picker was getting too much focus, made it get not as much focus.Juan Linietsky2016-07-011-0/+1
| | | | | | | | | | | | | | | | This abuse of focus was the original culprit of #5354
* | | | Many fixes to scene tree node dragging, closes #5341Juan Linietsky2016-06-302-4/+14
| | | |