summaryrefslogtreecommitdiff
path: root/editor
AgeCommit message (Collapse)Author
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-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
2019-11-27Show thumbnail for DynamicFont resourcevolzhs
2019-11-26Range: Remove min/max check added in #33908Rémi Verschelde
This wasn't a very good idea as it puts too strict requirements on how to set `min` and `max` values. For example, since the default min and max are 0 and 100, this triggers an error: ``` set_min(256) set_max(16384) ``` Since `min` will be higher than `max` temporarily. It can be worked around by setting max first, but it's not really intuitive. I'll relax the requirement as it's only a problem in `get_as_ratio`, which already has a check. Fix another min == max occurrence.
2019-11-26Merge pull request #33887 from dankan1890/old_search_fixRémi Verschelde
Fixed missing scrolling in Search Help Dialog.
2019-11-26Range: Fix cases where max was set to or below min valueRémi Verschelde
It will now raise an error whenever this happens so that we can fix these situations. `max == min` is not allowed as it could lead to divisions by zero in ratios, and `max < min` doesn't make much sense. Fixes #33907.
2019-11-26Merge pull request #33892 from nekomatata/scirpt-editor-fixesRémi Verschelde
Fixes around ScriptEditor script list
2019-11-25Fixes around ScriptEditor script listPouleyKetchoupp
- Fixed "Previous Script" shortcut not working (CTRL+SHIFT+<) - Fixed crash (integer division by zero) when using previous/next script shortcut with no script open - Fixed error when dropping a script file with no script open ERROR: ItemList::get_item_metadata: Index p_idx=-1 out of size (items.size()=0) At: scene\gui\item_list.cpp:257
2019-11-25Debug menu in editor doesn't hide on checkbox togglePouleyKetchoupp
Fixes #33850
2019-11-25Fixed missing scrolling in Search Help Dialog.dankan1890
Fix #33675
2019-11-25Merge pull request #33860 from nekomatata/stylebox-preview-shadowRémi Verschelde
StyleBox preview adjusted to fit all drawn content