summaryrefslogtreecommitdiff
path: root/editor
AgeCommit message (Collapse)Author
2019-12-17Prevent showing toggle scripts panel switch in shader editorYuri Roubinsky
2019-12-17Merge pull request #34364 from Chaosus/toggle_scripts_panelRémi Verschelde
Moves switch for show scripts panel from File menu to status bar
2019-12-16Merge pull request #34377 from timothyqiu/i18nRémi Verschelde
Makes more strings in editor translatable
2019-12-16Makes more strings in editor translatableHaoyu Qiu
* File type names in file dialogs * Layout option names * Visual shader editor UI
2019-12-16Center error icon vertically in AssetLibHaoyu Qiu
2019-12-15Moves switch for show scripts panel from File menu to status barYuri Roubinsky
2019-12-15Merge pull request #34349 from timothyqiu/enum-scopeRémi Verschelde
Show full enum name when not on the same doc page
2019-12-15Fixes wrong minimum size of Group EditorHaoyu Qiu
Takes current editor scale into account when setting the minimum size.
2019-12-14Merge pull request #34353 from Calinou/increase-2d-editor-zoom-limitsRémi Verschelde
Increase the TileSet and polygon UV editor zoom limits to 16×
2019-12-14Increase the TileSet and polygon UV editor zoom limits to 16×Hugo Locurcio
This also changes the TileSet editor's minimum zoom to match other 2D editors. This closes #34346.
2019-12-14Show enum class name when not on the same doc pageHaoyu Qiu
Variant.Type and Variant.Operator are listed on GlobalScope page instead of Variant. The `Variant` prefix should not be omitted on that page.
2019-12-13Makes int and bool clickable in documentationHaoyu Qiu
Also adjusted the way to check empty strings.
2019-12-13i18n: Sync translation template with current sourceRémi Verschelde
2019-12-13i18n: Sync translations with WeblateRémi Verschelde
2019-12-13Make more editor strings translatableHaoyu Qiu
2019-12-13Merge pull request #34016 from ↵Rémi Verschelde
norton-corbett/hotfix/tileset-editor-point-grabbing Fix TileSet Editor polygon point grabbing
2019-12-13Merge pull request #34304 from Calinou/improve-editor-shortcuts-searchRémi Verschelde
Don't search in unassigned shortcut labels in the editor shortcuts
2019-12-12Fix OptionButton's arrow margin in editor themeMichael Alexsander
2019-12-12Don't search in unassigned shortcut labels in the editor shortcutsHugo Locurcio
This also fades out shortcut labels for unassigned shortcuts, which makes for easier visual grepping. This closes #33299.
2019-12-11Fix for #34186: "Center Selection" in 2D editor introduces graphic bias.Hannah Crawford
2019-12-11Fixes infinite loop when switching editorHaoyu Qiu
2019-12-10Merge pull request #34040 from qarmin/unused_variable_more_precise_numbersRémi Verschelde
Removed unused variables, add some constants numbers
2019-12-10Removed unused variables, add some constants numbersRafał Mikrut
2019-12-09Merge pull request #34217 from timothyqiu/delete-linesRémi Verschelde
Fixes Delete Line doesn't delete first line in script
2019-12-09Merge pull request #34144 from timothyqiu/closingRémi Verschelde
Fixes prompt closes the wrong scene on quit
2019-12-09Fixes Delete Line doesn't delete first line in scriptHaoyu Qiu
Also, match multi-line delete behavior in script with single line: If there are four lines: A, B, C, D. Before the change: Delete C: Cursor lands on D Delete B and C: Cursor lands on A After the change: Delete C: Cursor lands on D Delete B and C: Cursor lands on D
2019-12-08Fix TilesetEditorContext separation snap.dankan1890
Fixes #34182
2019-12-06Add spaces after commas and strip extra ones in *FileDialog filter menuMichael Alexsander
2019-12-06Merge pull request #34141 from YeldhamDev/filediag_parenthesis_space_removalRémi Verschelde
Remove extra spaces from parenthesis in *FileDialog's filter menu
2019-12-06Fixes prompt closes the wrong scene when exitingHaoyu Qiu
2019-12-06Remove extra spaces from parenthesis in *FileDialog's filter menuMichael Alexsander
2019-12-06clear_meta when clearing guides with the rulerHaoyu Qiu
2019-12-05Merge pull request #34114 from simpuid/clear-guides-metaRémi Verschelde
changed set_meta to remove_meta in CLEAR_GUIDES menu option
2019-12-05Fixed errors in JointSpatialGizmoPlugin when selecting a joint with unset nodesPouleyKetchoupp
Fixes #34122
2019-12-05Fixes crash when clearing guides in empty sceneHaoyu Qiu
2019-12-05changed set_meta to remove_meta in CLEAR_GUIDES menu optionsimpuid
2019-12-04i18n: Sync translations with WeblateRémi Verschelde
2019-12-04Fixes translation for project sort optionsHaoyu Qiu
2019-12-02Tweak error timestamp formatting to be more readableHugo Locurcio
This uses a `.` instead of `:` as the decimal separator and trims the decimal part to 3 digits, as millisecond precision is usually sufficient.
2019-12-01Fixed another point grabbing issue at lower zoom levels.Norton Corbett
This was caused by the fact that the points were being iterated sequentially and we were breaking out of the loop as soon as we found a point that was "close enough", rather than actually finding the closest point. The previous fix exposed this new issue.
2019-12-01Center Script Editor when jumping to bookmarks/breakpointsTomasz Chabora
2019-12-01Merge pull request #34022 from nekomatata/animation-player-stop-errorsRémi Verschelde
Fixed errors in AnimationPlayerEditor when switching current_animation in the inspector
2019-12-01Fixed errors in AnimationPlayerEditor when switching current_animation in ↵PouleyKetchoupp
the inspector Case 1: start and stop an animation in the inspector Case 2: start an animation in the inspector, then stop and start again in the track editor Fixes #34021
2019-12-01Take into account the current zoom level when grabbing polygon points in the ↵Norton Corbett
TileSet editor. The transform of the TileSet editor workspace is now used to calculate the distance from the mouse click to the nearest polygon point. Fixes https://github.com/godotengine/godot/issues/34001
2019-11-30Fixed error when creating physical skeletonPouleyKetchoupp
An error was systematically triggered on the root bone, when trying to access its parent (the return value wasn't used in this case anyway). Fixes #23920
2019-11-29i18n: Sync translations with WeblateRémi Verschelde
2019-11-28Don't cast item to Spatial when checking if it's lockedAaron Franke
Not a necessary cast, and causes a crash any time it's not a Spatial.
2019-11-28Merge pull request #33952 from KoBeWi/not_my_faultRémi Verschelde
Fix box selection being cancelled immediately
2019-11-27Bugfix: Sanitize glTF importer Animation Names and do not set bone_poseMarios Staikopoulos
2019-11-27Fix box selection being cancelled immediatelyTomasz Chabora