summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2017-09-15Merge pull request #11230 from maxim-sheronov/fix_enum_bindingsThomas Herzog
Fix enums bindings
2017-09-13Merge pull request #11191 from toger5/slider_highlight_areaRémi Verschelde
added highlight area to slider
2017-09-13Fix enums bindingsMaxim Sheronov
Add missed bindings for enums Move some enums to class to have correct output of api.json
2017-09-13Merge pull request #10995 from GodotExplorer/pr-treeRémi Verschelde
Add custom minumus height to TreeItem
2017-09-12added highlight area to slidertoger5
2017-09-12Improved theme generation, and other fixesDaniel J. Ramirez
2017-09-12Merge pull request #10908 from hpvb/fix-unused-variablesRémi Verschelde
Fix unused variable warnings
2017-09-12Merge pull request #11026 from hpvb/fix-assign-in-ifRémi Verschelde
Remove assignment and declarations in if statements
2017-09-12Merge pull request #11057 from hpvb/fix-various-warningsRémi Verschelde
Fix various assorted warnings
2017-09-08Fix unused variable warningsHein-Pieter van Braam
The forth in my quest to make Godot 3.x compile with -Werror on GCC7
2017-09-08Remove assignment and declarations in if statementsHein-Pieter van Braam
After discussing with @reduz and @akien-mga it was decided that we do not allow assignments or declarations in if statements. This PR removes the instances of this I could find by automated means.
2017-09-08Fix various assorted warningsHein-Pieter van Braam
Fix various warnings that don't have enough instances to merit individual commits. Also fixes a potential bug in audio_server.cpp.
2017-09-08Fix serveral recent new clang-format errorsHein-Pieter van Braam
2017-09-07Restored auto snapping of controls to pixels, fixes #10847 and probably ↵Juan Linietsky
several more issues. Made it optional in the project settings but defaults to true.
2017-09-06Remove dead ButtonGroup codeRémi Verschelde
2017-09-05Add custom minumus height to TreeItemGeequlim
And expose the method `get_drop_section_at_pos` of Tree
2017-09-05Merge pull request #10822 from hoelzl/toggle-buttonRémi Verschelde
Fix inconsistent toggle button behavior
2017-09-04Merge pull request #10902 from toger5/rtl_copy_and_selection_colorRémi Verschelde
fixed copy on osx + help selection color
2017-09-04Merge pull request #10916 from volzhs/vertical-align-tree-lineeditRémi Verschelde
LineEdit in Tree is aligned vertical center
2017-09-04Merge pull request #10931 from djrm/pr_style_fixesRémi Verschelde
Improved color temperature in script editor
2017-09-04fixed copy on osx + help selection colortoger5
2017-09-04Merge pull request #10932 from djrm/pr_fix_metricsRémi Verschelde
Fixed some metrics (some issues caused by the new Noto Sans font).
2017-09-04Merge pull request #10901 from toger5/script_background_cleanupRémi Verschelde
StyleBoxSupport for RichTextLabel and cleanup for script+docs backgrounds fixes #10685
2017-09-04Merge pull request #10894 from Paulb23/brace_auto_indentRémi Verschelde
Added support for brace auto indent and fixed indent above.
2017-09-03Fix. resizeable -> resizable.Daniel J. Ramirez
(not actually a typo, but the rest of the API uses resizable)
2017-09-03Improved color temperature in script editorDaniel J. Ramirez
2017-09-03Fixed some metrics (some issues caused by the new Noto Sans font).Daniel J. Ramirez
plus other minor fixes
2017-09-03LineEdit in Tree is aligned vertical centervolzhs
2017-09-02richTextLable implemented stylebox supporttoger5
- also fixed issue with total_chars ignoring first line
2017-09-02Added support for brace auto indent and fixed indent abovePaulb23
2017-09-02Merge pull request #10887 from Paulb23/fix_scrolling_up_jitterRémi Verschelde
Fixed jitter when scrolling up
2017-09-02Fix typos 'a' and 'an'Poommetee Ketson
2017-09-02Fixed jitter when scrolling upPaulb23
2017-09-02Fix use of unitialized variablesHein-Pieter van Braam
The second in my quest to make Godot 3.x compile with -Werror on GCC7
2017-09-01Merge pull request #10846 from hpvb/fix-sign-compareRémi Verschelde
Fix signed and unsigned comparisons
2017-09-01Fix files headerPoommetee Ketson
2017-09-01Fix signed and unsigned comparisonsHein-Pieter van Braam
The first in my quest to make Godot 3.x compile with -Werror on GCC7
2017-08-31Merge pull request #10791 from tuga3d/indent-glitch-attempt-2Rémi Verschelde
second attempt on fixing the indent glitch.
2017-08-31Fix inconsistent toggle button behaviorMatthias Hoelzl
2017-08-31unified draw_center naming for (9patch,StyleBoxes)toger5
- filled -> draw_center - is_draw_center -> is_draw_center_enabled - get_draw_center -> is_draw_center_enabled
2017-08-31Merge pull request #10096 from toger5/label_styleboxRémi Verschelde
fixed Import LineEdit to label + label stylebox
2017-08-30second attempt on fixing the indent glitch.Paulo Gomes
I've reverted the first attempt (https://github.com/godotengine/godot/pull/10653). I was very naive and didn't consider that the glitch happens also if you're not in the first column, ex. if you have 2 tabs and press return in between them. Hope this will solve the problem without messing anything else.
2017-08-29Merge pull request #10745 from neikeq/fix-docdata-and-stuffJuan Linietsky
DocData and virtual method type hints fixes
2017-08-29DocData and type hints fixesIgnacio Etcheverry
- Makes vararg methods automatically use PROPERTY_USAGE_NIL_IS_VARIANT on return types - Completely removes the ":type" suffix for method names. Virtual methods must use the MethodInfo constructors that takes Variant::Type or PropertyHint as the first parameter for the return type (with CLASS_INFO as a helper to get the PropertyInfo). Parameters must use PROPERTY_HINT_RESOURCE_TYPE and hint string. - PROPERTY_USAGE_NIL_IS_VARIANT is no longer needed for parameters, because parameters cannot be void. - Adds missing PROPERTY_USAGE_NIL_IS_VARIANT to virtual and built-in methods that return Variant.
2017-08-28Merge pull request #10693 from Paulb23/offset_view_when_removing_issue_10529Rémi Verschelde
Fixed offset view when removing text, issue 10529
2017-08-27Dead code tells no talesRémi Verschelde
2017-08-27Fixed offset view when removing text, issue 10529Paulb23
2017-08-27Use HTTPS URL for Godot's website in the headersRémi Verschelde
2017-08-27Merge pull request #10600 from MasonAsh/fix-10596Rémi Verschelde
Script editor: fixed no key repeat for CTRL+Y
2017-08-27Merge pull request #10591 from Rubonnek/possible-null-ptr-dereferenceRémi Verschelde
Added/Fixed null pointer checks