summaryrefslogtreecommitdiff
path: root/editor/editor_settings.cpp
AgeCommit message (Collapse)Author
2018-05-16Exposed set/get_project_metadata in EditorSettings.Michael Alexsander Silva Dias
2018-05-16Merge pull request #18442 from StraToN/add-button-sort-methods-overviewRémi Verschelde
Add a ToggleButton for alphabetic sorting in methods overview
2018-05-14TextEdit word wrapIan
2018-05-13Editor: make custom bold font config workingMartin Capitanio
Fixes #18737
2018-05-11Add button hbox with alphabetic sort toggle above methods outline.Julian Murgia
2018-05-11fixed bodl font error messagetoger5
2018-05-10Merge pull request #18183 from Paulb23/gdscript_highlighter_inital_changesRémi Verschelde
GDScript function definition and get_node shortcut syntax highlighting
2018-05-08Fix the 3D grid color setting hintsHugo Locurcio
It was mistakenly changed to RGBA in #18525 when it should have stayed RGB (the 3D grid does not currently support transparency).
2018-05-07Merge pull request #18113 from toger5/bold_fontJuan Linietsky
added bold font to editor (support for coustom bold font)
2018-05-07Merge pull request #18525 from Calinou/improve-3d-gridJuan Linietsky
Improve the 3D editor grid
2018-05-04Make bones have more contrast with outlineJuan Linietsky
2018-04-30Improve the 3D editor gridHugo Locurcio
- The grid's primary and secondary colors can now be changed - The number of grid steps (subdivisions) can now be changed - The grid size can now be changed - The grid is now darker by default
2018-04-28Tweak the property hint ranges of caret blink and line length guidelineHugo Locurcio
This allows for more precise adjustments.
2018-04-20Added GDScript NodePath highlightingPaulb23
2018-04-20Added GDScript function definition highlightingPaulb23
2018-04-19added bold font to editor (support for coustom bold font)toger5
2018-03-23Merge pull request #17706 from Calinou/overhaul-hidpi-settingsRémi Verschelde
Overhaul the display scaling editor settings
2018-03-23Overhaul the display scaling editor settingsHugo Locurcio
This adds more scaling options, in addition to a custom scaling option which allows any scale between 0.75 and 3.0 to be used.
2018-03-23Merge pull request #17505 from ArkDShiggy/invert_y-axisRémi Verschelde
add option to invert y-axis
2018-03-20add option to invert y-axisJulien CATINEAU
2018-03-14Merge pull request #17420 from marcelofg55/fscache_err_checksRémi Verschelde
Added error checks for fscache saving
2018-03-13Added error checks for fscache savingMarcelo Fernandez
2018-02-28Add an hinting mode setting to DynamicFontsHugo Locurcio
- Editor font hinting can now be tweaked in the Editor Settings. - DynamicFonts used in projects now have tweakable hinting settings in their DynamicFontData child. Changes will be visible upon reloading the scene in the editor.
2018-02-14Merge pull request #15399 from poke1024/load-one-translationRémi Verschelde
Load needed editor translation only on demand
2018-02-02Changes for the "Recent Scripts" menu.Michael Alexsander Silva Dias
2018-01-25maximum recent files increment fixRazah
2018-01-12Properly save the new save safe setting, avoid crash.Juan Linietsky
2018-01-12Bind many more properties to scriptsBojidar Marinov
Notable potentially breaking changes: - PROPERTY_USAGE_NOEDITOR is now PROPERTY_USAGE_STORAGE | PROPERTY_USAGE_NETWORK, without PROPERTY_USAGE_INTERNAL - Some properties were renamed, and sometimes even shadowed by new ones - New getter methods (some virtual) were added
2018-01-09Fix bindings of EditorSettings.set_initial_valueRémi Verschelde
Also ran doctool.
2018-01-08Merge pull request #15458 from volzhs/fix-editor-settings-1Rémi Verschelde
Fix editor setting value is back to default
2018-01-08Merge pull request #15457 from volzhs/custom-font-source-codeRémi Verschelde
Set source code font with ttf, otf
2018-01-08Set source code font with ttf, otfvolzhs
renamed interface/editor/custom_font to interface/editor/main_font moved text_editor/theme/font to interface/editor/code_font renamed interface/editor/font_size to interface/editor/main_font_size renamed interface/editor/source_code_size to interface/editor/code_font_size
2018-01-08Fix editor setting value is back to defaultvolzhs
Fix #15449
2018-01-06Load needed translation on demandBernhard Liebl
2018-01-06Fix editor settings weird behaviorvolzhs
2018-01-05Add missing copyright headers and fix formattingRémi Verschelde
Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
2018-01-04Merge pull request #15033 from poke1024/shortcuts-macRémi Verschelde
Alternative keyboard shortcuts for macOS
2018-01-03Merge pull request #15073 from volzhs/editor-custom-fontRémi Verschelde
Use .ttf or .otf file for editor custom font
2018-01-01Update copyright statements to 2018Rémi Verschelde
Happy new year to the wonderful Godot community!
2018-01-01Merge pull request #15152 from poke1024/editor-settings-changeNoshyaar
Only send editor "settings_changed" if actually changed
2017-12-29Only send editor "settings_changed" if actually changed.Bernhard Liebl
2017-12-28Respect text editor highlighting color changesvolzhs
Fix #14838
2017-12-27Use .ttf or .otf file for editor custom fontvolzhs
2017-12-26On macOS, change some default editor shortcutsBernhard Liebl
2017-12-25Merge pull request #14853 from MattUV/context-menuNoshyaar
Adds an option to move cursor with right click in TextEdit
2017-12-20EditorSettings: Move scene tab options to their dedicated categoryRémi Verschelde
Fixes #14870.
2017-12-20Adds an option to move cursor with right click in TextEditMattUV
Fixes #14832 - Added an option in the editor settings/cursor to make the cursor move with right click. - If the option is activated (true by default), a right click will move the cursor before displaying context menu. - If there is a selection, a right click on it will keep it selected, a right click outside it will unselect it. - The option is available in textEdit via an inspector property (or via GDScript): caret_moving_by_right_click - The option is available in the script editor and the shader editor via the editor settings - The documentation has been updated with the new property, and a few other entries in TextEdit.xml.
2017-12-09Merge pull request #13994 from ISylvox/caret-blinkRémi Verschelde
Set Caret Blinking Enabled by Default
2017-12-07Changed current line draw order and added code folding colorPaulb23
2017-12-05Moves the guides colors to editor settingsGilles Roudiere