summaryrefslogtreecommitdiff
path: root/editor/editor_settings.cpp
AgeCommit message (Collapse)Author
2019-05-31Merge pull request #27334 from qarmin/add_50_percent_editor_scaleRémi Verschelde
Add support for 50% editor scale
2019-05-30Decrease the editor FPS cap when the window is unfocusedHugo Locurcio
This decreases CPU/GPU usage when the window is unfocused, which can be beneficial to laptop users. This also makes the low-processor mode sleep project setting no longer affect the editor. Instead, two new editor settings now define the duration of sleeping when the editor is focused and unfocused. This closes #24209 and partially addresses #29257.
2019-05-28Merge pull request #28107 from Amssat221/issue28105Rémi Verschelde
Set range (10-50) to help source font size
2019-05-21i18n: Skip unsupported locales for editor translationsRémi Verschelde
Godot currently can't properly render scripts that require Right-To-Left and font shaping support, so we skip those. This is a temporary measure until these features are supported. Fixes #28577.
2019-05-20Merge pull request #28218 from KoBeWi/b00km4rk5Rémi Verschelde
Add bookmarks for easier code navigation
2019-05-20Merge pull request #27559 from groud/anchor_modeRémi Verschelde
Improve the anchors and margin workflow
2019-05-17Merge pull request #28366 from iwek7/feature/issue28355/showSpacesInEditorMax Hilbrunner
Add feature to show spaces in code editor
2019-05-16Merge pull request #27097 from siddharth952/masterMax Hilbrunner
Adjusts the default color for search border
2019-05-14Merge pull request #27569 from Faless/net/ipv4_link_localMax Hilbrunner
Exclude link-local IPv4s from editor host list.
2019-05-13Improve the anchors and margin workflowGilles Roudiere
2019-05-05Add bookmarks for easier code navigationTomasz Chabora
2019-05-02Update editor_settings.cppSiddharth
Update editor_settings.cpp Update editor_themes.cpp Update editor_settings.cpp
2019-04-30Set range and change EDITOR_DEF to EDITOR_GETGuillermo
Fix indentation Fix Indentation! Remove 14
2019-04-30Merge pull request #27913 from Amssat221/issue27912Rémi Verschelde
Set a range for line spacing
2019-04-30Merge pull request #24437 from mateusfccp/single_quotes_optionRémi Verschelde
Add settings for single-quotes on completion
2019-04-30Issue-28355 - show spaces in editormiwanczuk
2019-04-30Merge pull request #25751 from Calinou/faster-script-error-checkingRémi Verschelde
Allow floating-point values in the idle parse delay editor setting
2019-04-30Set range for line spacinggsegovia2018
2019-04-26Allow floating-point values in the idle parse delay editor settingHugo Locurcio
This also makes value changes effective without having to restart the editor.
2019-04-23Added a marker in text_edit that tells which row is executing.Rikhardur Bjarni Einarsson
2019-04-20Display connection information in the script editorPaulb23
2019-04-08Add ability to edit editor feature profilesJuan Linietsky
Allows enabling/disabling parts of the editor and storing/loading profiles for that.
2019-04-07Add 50% scale in Godotqarmin
2019-04-05Add support for type hints in non-default script editor templatesHugo Locurcio
This also refactors template processing to avoid repetition. This closes #27074.
2019-03-31Exclude link-local IPv4s from editor host list.Fabio Alessandrelli
IPv4 has link-local addresses like IPv6 (block 169.254.0.0/16). Those addresses should not be considered a valid option when selecting the `remote_host` setting for the debugger.
2019-03-27Use the accent color to highlight selected textHugo Locurcio
This makes selections easier to see, while making them fit better within the editor theme. This closes #22552.
2019-03-16Fix misplaced hint for interface/theme/accent_colorRémi Verschelde
Supersedes #26992.
2019-03-06Cleanup relationship line coding after 5f079e2Michael Alexsander Silva Dias
2019-03-06-Make tileset and meshlibrary edit in a separate inspector, fixes #26671Juan Linietsky
-Made relationship lines appear based on theme settings, not previous hack -Fix drawing of relationship lines (was broken) -Fix double initialization of theme settings
2019-03-06Merge pull request #22716 from Chaosus/update_themeRémi Verschelde
Make theme changing no longer requires restart to be fully applied
2019-03-04Fix creating editor data, config and cache pathsRémi Verschelde
We used to abort if the system-specific data folder (e.g. `~/.local` or `%APPDATA%`) is missing, but the next code chunk actually creates it with `make_dir_recursive` if missing. Fixes #26598.
2019-02-25Move the FileSystem dock layout properties to the per-project layout fileGilles Roudiere
2019-02-08Add a setting hint for the Output panel font sizeHugo Locurcio
This closes #21237.
2019-01-01Update copyright statements to 2019Rémi Verschelde
Happy new year to the wonderful Godot community!
2018-12-18Add settings for single-quotes on completionMateus Felipe C. C. Pinto
2018-12-1524303: remember sorting order in the project managerGleb Mineev
2018-12-13Revert "Use more subtle indentation guides in the script editor"Rémi Verschelde
2018-12-12EditorSettings: Remove unused settings from initial setRémi Verschelde
Fixes #24291.
2018-12-12Code style: Sort EditorSettings initial set by sectionRémi Verschelde
2018-12-09Merge pull request #20725 from Calinou/textedit-subtle-indent-guidesRémi Verschelde
Use more subtle indentation guides in the script editor
2018-11-20Merge pull request #23645 from Calinou/add-dynamicfont-antialias-optionRémi Verschelde
Add a property to control DynamicFont anti-aliasing
2018-11-17Fixup to previous commit, missed one occurrenceRémi Verschelde
2018-11-10Add a property to control DynamicFont anti-aliasingHugo Locurcio
- Editor font anti-aliasing can now be disabled in the Editor Settings. - DynamicFonts used in projects can now have their anti-aliasing disabled in their DynamicFontData child. Changes will be visible upon reloading the scene in the editor.
2018-11-01Merge pull request #22977 from CakHuri/draw_relationship_lines-ONRémi Verschelde
Made 'draw relationship lines' (at Editor Settings) enabled by default.
2018-10-25Make theme changing no longer requires restart to be fully appliedChaosus
2018-10-14Increase the source font's line spacingHugo Locurcio
This also increases line spacing in license texts in the editor's About dialog.
2018-10-13Made 'draw relationship lines' (at Editor Settings) enabled by default.M. Huri
2018-10-02Remove "Doc Path" settingMichael Alexsander Silva Dias
2018-10-03Use more subtle indentation guides in the script editorHugo Locurcio
2018-09-24Added viewport border color setting for canvas item editorChaosus