aboutsummaryrefslogtreecommitdiff
path: root/editor
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | | | | | | | | | | | | | Merge pull request #17154 from Hinsbart/fix_text_editor_settingsRémi Verschelde2018-03-131-5/+5
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ScriptEditor: Use EditorSettings instead of hardcoded values in constructor.
| * | | | | | | | | | | | | | | | ScriptEditor: Use EditorSettings instead of hardcoded values in constructor.Andreas Haas2018-03-011-5/+5
| |/ / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | Merge pull request #17166 from Noshyaar/tilemap2Rémi Verschelde2018-03-132-2/+8
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TileSet&TextureRegion: fix error when getting nonexistent tile
| * | | | | | | | | | | | | | | | TileSet&TextureRegion: fix error when getting nonexistent tilePoommetee Ketson2018-03-022-2/+8
| |/ / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | Merge pull request #17172 from StateOff/add_show_axis_optionsRémi Verschelde2018-03-132-15/+57
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add "Show Origin" and "Show Viewport" options to 2D Editor Viewport
| * | | | | | | | | | | | | | | | Add "Show Origin" and "Show Viewport" options to 2D Editor ViewportBlazej Floch2018-03-022-15/+57
| |/ / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | Merge pull request #17176 from Noshyaar/audiobusRémi Verschelde2018-03-131-0/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | EditorAudioBus: expand effects list
| * | | | | | | | | | | | | | | | EditorAudioBus: expand effects listPoommetee Ketson2018-03-021-0/+2
| |/ / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | Merge pull request #17184 from Noshyaar/tilemap3xRémi Verschelde2018-03-132-17/+37
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TileSetEditorPlgn: use EditorHandle icon as handle
| * | | | | | | | | | | | | | | | TileSetEditorPlgn: use EditorHandle icon as handlePoommetee Ketson2018-03-022-17/+37
| |/ / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | Merge pull request #17311 from marcelofg55/export_err_checksRémi Verschelde2018-03-131-16/+13
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Improved error checking at EditorExportPlatformPC::export_project
| * | | | | | | | | | | | | | | | Improved error checking at EditorExportPlatformPC::export_projectMarcelo Fernandez2018-03-061-16/+13
| | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #17379 from poke1024/fix-anim-popupsRémi Verschelde2018-03-131-0/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | AnimationPlayer: fix popups close on double click
| * | | | | | | | | | | | | | | | | AnimationPlayer: fix popups close on double clickBernhard Liebl2018-03-091-0/+2
| | |_|_|_|_|_|_|_|_|/ / / / / / / | |/| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #17380 from robfram/fix-change-node-typeRémi Verschelde2018-03-131-1/+5
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix overwriting all common properties when using `Change Type` tool
| * | | | | | | | | | | | | | | | | Fix overwriting all common properties when using `Change Type` toolrobfram2018-03-091-1/+5
| | |_|_|_|_|_|_|_|/ / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If you change the type of an existing node, it checks if you have modified the initial value of their properties before overwriting their values in the new node. For example, if you created a `Label` and changed it to `LineEdit`, the `mouse_filter` property was created as `Ignore` for the original `Label` node, and was maintained after changing it to `LineEdit` causing not to work as expected. Now it checks if `Ignore` is the default value for `Label` nodes, and as it is, the property value is left unchanged, maintaining the default value for `LineEdit`, which is `Stop`. Fix #13955 and alike.
* | | | | | | | | | | | | | | | | Merge pull request #17381 from poke1024/fix-anim-scrubRémi Verschelde2018-03-131-0/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | AnimationPlayer: fix scrubbing after play backwards
| * | | | | | | | | | | | | | | | | AnimationPlayer: fix scrubbing after play backwardsBernhard Liebl2018-03-091-0/+1
| | |/ / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #17440 from viktor-ferenczi/issue-5042Rémi Verschelde2018-03-133-31/+50
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Properly closing all files in Python build code
| * | | | | | | | | | | | | | | | | Properly closing all files in Python codeViktor Ferenczi2018-03-113-31/+50
| | |/ / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #17390 from poke1024/fix-anim-text-overlapRémi Verschelde2018-03-131-0/+13
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixes overlapping text labels in animation editor timeline
| * | | | | | | | | | | | | | | | | Fix overlapping timeline text in AnimationEditorBernhard Liebl2018-03-091-0/+13
| | |/ / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #17404 from poke1024/fix-anim-player-panRémi Verschelde2018-03-131-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix wrong pan direction in animation player ui
| * | | | | | | | | | | | | | | | | Fix wrong pan direction in animation player uiBernhard Liebl2018-03-101-2/+2
| |/ / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | Merge pull request #17406 from poke1024/fix-anim-key-uiRémi Verschelde2018-03-133-27/+32
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix broken hover/select coloring of keys in animation editor
| * | | | | | | | | | | | | | | | | Fix broken hover/select coloring of keys in animation editorBernhard Liebl2018-03-103-27/+32
| |/ / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | Merge pull request #17413 from ShyRed/previewfixRémi Verschelde2018-03-131-0/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update preview on filesystem change
| * | | | | | | | | | | | | | | | | Update preview on filesystem changeShyRed2018-03-101-0/+3
| | |/ / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Check and recreate a file's preview, if it has changes to it in the filesystem.
* | | | | | | | | | | | | | | | | Merge pull request #17435 from poke1024/output-error-iconRémi Verschelde2018-03-133-4/+10
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Show error icon at "Output" in case of errors
| * | | | | | | | | | | | | | | | | Show error icon at "Output" in case of errorsBernhard Liebl2018-03-113-4/+10
| | |/ / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | Merge pull request #17441 from poke1024/fix-autoload-column-widthRémi Verschelde2018-03-131-2/+2
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fix column width on AutoLoad table on hidpi displays
| * | | | | | | | | | | | | | | | | Fix column width on AutoLoad table on hidpi displaysBernhard Liebl2018-03-111-2/+2
| |/ / / / / / / / / / / / / / / /
* | | | | | | | | | | | | | | | | Merge pull request #17319 from eska014/polyclipper-toolsonlyRémi Verschelde2018-03-131-0/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Build polygon clipper only in tools builds
| * | | | | | | | | | | | | | | | | Build polygon clipper only in tools buildsLeon Krause2018-03-061-0/+1
| | | | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | Merge pull request #17455 from Noshyaar/capitalizeRémi Verschelde2018-03-131-3/+8
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ScriptTextEditor: fix capitalize offset
| * | | | | | | | | | | | | | | | | | ScriptTextEditor: fix capitalize offsetPoommetee Ketson2018-03-121-3/+8
| | |_|/ / / / / / / / / / / / / / / | |/| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | | | Merge pull request #17442 from Noshyaar/esrRémi Verschelde2018-03-131-0/+3
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | EditorNode: fix clicking ok keeps trying to save
| * | | | | | | | | | | | | | | | | | EditorNode: fix clicking ok keeps trying to savePoommetee Ketson2018-03-111-0/+3
| |/ / / / / / / / / / / / / / / / /
* / / / / / / / / / / / / / / / / / Fix non working action names containing whitespacesrobfram2018-03-121-4/+4
|/ / / / / / / / / / / / / / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Now the action name is quoted if it contains spaces. Also, quotation mark (") is added to the forbidden character list for action names, as it was also a bug. Fix #17322
* | / / / / / / / / / / / / / / / FIX to broken item select list (zoom and RMB)Ranoller2018-03-071-2/+2
| |/ / / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | FIX to #17346. Compiled and tested.
* | | | | | | | | | | | | | | | Merge pull request #17243 from delftswa2018/trailingDotFixHein-Pieter van Braam2018-03-071-1/+1
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | |_|/ / / / / / / / / / / / / / |/| | | | | | | | | | | | | | | Fix being able to create folder name with ending '.' on Windows
| * | | | | | | | | | | | | | | Added a check for trailing dot when creating folder.Felix Yang2018-03-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Merge the trailing dot test into existing test. Removed OS test.
* | | | | | | | | | | | | | | | Merge pull request #17247 from poke1024/canvas-select-prioRémi Verschelde2018-03-051-1/+16
|\ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | In CanvasItemEditor, prioritize selected items when dragging
| * | | | | | | | | | | | | | | | In CanvasItemEditor, prioritize selected itemsBernhard Liebl2018-03-051-1/+16
| | |_|/ / / / / / / / / / / / / | |/| | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | skip demo download prompt if ssl is unavailableEmanuele Fornara2018-03-051-1/+1
| | | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | | Fix new Node dialog Create button behaviorIvan Vodopiviz2018-03-041-0/+2
| |_|/ / / / / / / / / / / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Added a one-liner to update the Create button disabled state when selecting an item from the search results list. Fixes #17265, long live the Realm!
* | | | | | | | | | | | | | | Fix for a possible crash when a custom theme is not loaded properlyMarcelo Fernandez2018-03-031-1/+3
| | | | | | | | | | | | | | |
* | | | | | | | | | | | | | | i18n: Sync translation templates with 3.0 sourceRémi Verschelde2018-03-0346-321/+368
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (cherry picked from commit 65d214d3dafef696d99f6c23c7b941bbde1c1802)
* | | | | | | | | | | | | | | i18n: Sync translations with WeblateRémi Verschelde2018-03-0313-764/+705
|/ / / / / / / / / / / / / /
* | / / / / / / / / / / / / Fix various valgrind reported uninitialized variable usesHein-Pieter van Braam2018-02-282-0/+4
| |/ / / / / / / / / / / / |/| | | | | | | | | | | |