summaryrefslogtreecommitdiff
path: root/editor/property_editor.cpp
AgeCommit message (Collapse)Author
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-05Fix get_edited_scene_root error at starting editorvolzhs
Fix #15300
2018-01-01Update copyright statements to 2018Rémi Verschelde
Happy new year to the wonderful Godot community!
2017-12-27Merge pull request #14991 from djrm/pr_fixesNoshyaar
Show Options Dialog for NodePath and File in clicked button position.
2017-12-25Fix popup menu size in Inspector dockvolzhs
2017-12-23Show Options Dialog for NodePath and File in clicked button position.Daniel J. Ramirez
Auto select newly created nodes.
2017-12-21Fixes and modifications for some dialogs.Michael Alexsander Silva Dias
2017-12-17Clean up setting dialogues a bit.Ray Koopa
2017-12-16Merge pull request #14698 from ↵Rémi Verschelde
carlosfvieira/6382-Properties_in_the_inspector_lacking_tooltips Proposed change to close issue "#6382 - Properties in the inspector lacking tooltips"
2017-12-15Made multiline property editor deselect text when opening.Michael Alexsander Silva Dias
2017-12-16closes godotengine/godot#6382 - traverse classes docs so that all properties ↵carlosfvieira
from inherited classes have tooltips accordingly
2017-12-12Enhance undoredo action name, TTR, cleanupPoommetee Ketson
2017-12-11Highlight Editor Settings categoriesRay Koopa
2017-12-10Fix wrong return value in some virtual method bindingsRémi Verschelde
2017-12-10Merge pull request #13351 from poke1024/fix12451_2Rémi Verschelde
Make click on arrow properly open and close property editor modals
2017-12-10fix certain popup close clicks with popup buttonsBernhard Liebl
2017-12-10PropertyEditor: Filter out resource_local_to_sceneRémi Verschelde
This lets the empty "Global" category disappear again. Also silence a debug print.
2017-12-09PropertyEditor: Fix display of property doc in tooltipRémi Verschelde
2017-12-09Remove layer flyout label.Ray Koopa
2017-12-07Style: Apply new clang-format 5.0 style to all filesRémi Verschelde
2017-12-07Merge pull request #13958 from jjjuande/fix_revert_buttonRémi Verschelde
Fix the revert button issue with instanced nodes
2017-12-06Fix and rewrite folding logic, closes #14005, closes #13421Juan Linietsky
2017-12-04Fix the revert button issue with instanced nodesJuande
The method "check_reload_status" on the file "property_editor.cpp" didn't take into account if the field is a property of an instanced node just like the "update_tree" does. The code that checks this in "update_tree" has been extracted into the method "_is_instanced_node_with_original_property_different" to be also used in "check_reload_status". Fixes #13415
2017-12-02Some untranslated UI stringsUnknown
2017-11-28Small fixes to #13233Dmitry Koteroff
2017-11-27Merge pull request #13240 from Krakean/fix_interpretcomma_as_decimalpointRémi Verschelde
Makes possible to interpret comma as decimal point in editor
2017-11-26Makes possible to interpret comma as decimal point in editorDmitry Koteroff
2017-11-24Implemented a collapse/expand all feature request for Inspector (issue ↵Dmitry Koteroff
#9427) via popup of "Object properties" button. Editor Settings->Interface->Editor: added "Expand All Properties" option. Off by default. Cosmetics fixes due to @Reduz notes.
2017-11-20Merge pull request #11940 from GodotExplorer/debuggerRémi Verschelde
Enhanced debugger for godot 3.0
2017-11-20Merge pull request #12952 from bojidar-bg/12392-export-enumsRémi Verschelde
Allow exporting enums from GDScript
2017-11-17Rename Rect3 to AABB.Ferenc Arn
Fixes #12973.
2017-11-17Allow exporting enums from GDScriptBojidar Marinov
Use as `export(E) ...` Closes #12392
2017-11-17Better supported for remote object editing with the inspector with a simple ↵geequlim
dictionary editor implement
2017-11-09Removed show type icons optionDaniel J. Ramirez
2017-10-27Fixed interface scaling issues with editor action button and value editor ↵Jake Larson
popovers
2017-10-27Merge pull request #12432 from larsonjj/fix/property_editor_action_buttonsRémi Verschelde
Fix editor action button layout
2017-10-27Fix editor action button layoutJake Larson
2017-10-25Fix text margins in value editor pop-up.Robin Arys
2017-10-14keep display int if int rangeSuchaaver Chahal
2017-10-09change step to .01 for floatSuchaaver Chahal
2017-10-06VisualScript: Fix crash with get_node().Andreas Haas
2017-10-02Merge pull request #11659 from AndreaCatania/prephysicsAndreas Haas
Renamed fixed_process to physics_process
2017-10-02Merge pull request #11646 from djrm/pr_visual_improvementsPoommetee Ketson
Several visual improvements.
2017-09-30Renamed fixed_process to physics_processAndreaCatania
2017-09-29EditorSettings: Move interface/ properties to interface/editorAndreas Haas
Fixes inconsistent behaviour where clicking on the "Interface" in the Editor Settings wouldn't collapse the category as is the case for all the other categories.
2017-09-28Several visual improvements.Daniel J. Ramirez
Added proper label sizing Improved text editor status bar Fixed some issues with ItemList and also some style fixes Added background to color picker samples (the mrcdk fix) Fixed slider ticks. Added VS breakpoint and error styleboxes.
2017-09-25Removed most of the custom colors from the interface.Daniel J. Ramirez
2017-09-26Merge pull request #11424 from groud/control_node_presetsRémi Verschelde
Implements set_margins_preset(...)
2017-09-24Added the ability to revert to initial value in editor settings.Daniel J. Ramirez
2017-09-22Ability to convert from SpatialMaterial to ShaderMaterialJuan Linietsky