aboutsummaryrefslogtreecommitdiff
path: root/scene/gui
Commit message (Collapse)AuthorAgeFilesLines
* turned arround minimum Size for Seperator in reaction to issue #12020Grosskopf2017-10-121-1/+5
|
* Merge pull request #11941 from Paulb23/members_selected_scroll_issue_11648Rémi Verschelde2017-10-091-0/+8
|\ | | | | Consistant scroll when using members overview, issue 11648
| * Consistant scroll when using members overview, issue 11648Paulb232017-10-081-0/+8
| |
* | Merge pull request #11884 from Noshyaar/pr-fd2Rémi Verschelde2017-10-091-2/+3
|\ \ | |/ |/| | | | | FileDialog: fix select index out of range [ci skip]
| * FileDialog: fix select index out of rangePoommetee Ketson2017-10-061-2/+3
| |
* | Add NIL_IS_VARIANT usage to few definitionsRuslan Mustakov2017-10-051-1/+1
|/ | | | | The missing usage flag led to GDNative API descriptions containting arguments with "void" type.
* Merge pull request #11840 from djrm/pr_fix_drive_selectionGilles Roudiere2017-10-051-0/+1
|\ | | | | Match file dialog drive with the current folder.
| * Match file dialog drive with the current folder.Daniel J. Ramirez2017-10-041-0/+1
| |
* | Add function set_stream_position to VideoPlayerTerah2017-10-042-0/+8
|/ | | | Also add docucmentation for set_stream_position in VideoPlayer
* Merge pull request #11659 from AndreaCatania/prephysicsAndreas Haas2017-10-024-42/+42
|\ | | | | Renamed fixed_process to physics_process
| * Renamed fixed_process to physics_processAndreaCatania2017-09-304-42/+42
| |
* | Merge pull request #11754 from magyar123/masterAndreas Haas2017-10-021-2/+8
|\ \ | | | | | | Fixed center align in LineEdit
| * | Fixed center align in LineEditbalint magyar2017-10-011-2/+8
| | |
* | | Merge pull request #11646 from djrm/pr_visual_improvementsPoommetee Ketson2017-10-025-45/+39
|\ \ \ | | | | | | | | Several visual improvements.
| * | | Several visual improvements.Daniel J. Ramirez2017-09-285-45/+39
| | |/ | |/| | | | | | | | | | | | | | | | | | | | | | 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.
* | | Merge pull request #11650 from kitsune/fix-range-unshare-crashPoommetee Ketson2017-10-021-4/+6
|\ \ \ | |_|/ |/| | Fix crash when unsharing a range that is not shared
| * | Fix crash when unsharing a range that is not sharedDylan Enloe2017-09-281-4/+6
| |/ | | | | | | | | | | | | Added a guard to Range::_unref_shared to prevent it from doing anything in the event that shared is null. Fixes Issue: #11521
* | Fix GraphEdit mouse scroll axis.jagt2017-10-011-8/+8
| | | | | | | | | | maps BUTTON_WHEEL_UP/DOWN to vscroll of GraphEdit. maps KEY_SHIFT + BUTTON_WHEER_UP/DOWN to hscroll of GraphEdit.
* | Merge pull request #11684 from toger5/tab_container_menu_button_centerGilles Roudiere2017-09-301-2/+2
|\ \ | | | | | | Vertical alignement (TabContainer menu button)
| * | Vertical alignement (TabContainer menu button)toger52017-09-291-2/+2
| |/
* / fixed coustom bg weired offset for code editortoger52017-09-291-2/+1
|/
* Merge pull request #11617 from groud/fix_bad_displayRémi Verschelde2017-09-272-36/+66
|\ | | | | Fixes bad display
| * Fixes set_anchors_and_margins_preset()Gilles Roudiere2017-09-271-35/+65
| |
| * Remove unecessary anchors&margins set causing bad display (sons of containers)Gilles Roudiere2017-09-271-1/+1
| |
* | Fix toggle mode of BaseButton.Ferenc Arn2017-09-261-1/+3
|/ | | | ..which got broken with #11480.
* Fix crash when scene has LineEdit and run from editorvolzhs2017-09-261-1/+1
|
* Merge pull request #11424 from groud/control_node_presetsRémi Verschelde2017-09-267-35/+141
|\ | | | | Implements set_margins_preset(...)
| * Remove set_area_as_parent_rect and replace it by ↵Gilles Roudiere2017-09-227-23/+6
| | | | | | | | set_anchors_and_margins_preset(PRESET_WIDE)
| * Implements set_margins_preset(...)Gilles Roudiere2017-09-222-12/+135
| |
* | Merge pull request #11541 from Paulb23/tree_arrow_goto_parentRémi Verschelde2017-09-251-2/+10
|\ \ | | | | | | | | | | | | Goto to parent on left arrow in tree with single column [ci skip]
| * | Goto to parent on left arrow in tree with single columnPaulb232017-09-241-2/+10
| | |
* | | Merge pull request #11545 from ↵Rémi Verschelde2017-09-251-1/+1
|\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | Paulb23/line_edit_caret_blink_resetting_issue_10764 Fixed caret blink and speed resetting in scenes, issue 10764 [ci skip]
| * | | Fixed caret blink and speed resetting in scenes, issue 10764Paulb232017-09-241-1/+1
| | | |
* | | | Fixed scrollbar jitter when clickingPaulb232017-09-241-1/+1
|/ / /
* | | Rename get_position => get_playback_position and seek_pos => seek on audio ↵Marcelo Fernandez2017-09-231-1/+1
| | | | | | | | | | | | classes
* | | Merge pull request #11480 from tagcup/button_unpress_fixRémi Verschelde2017-09-221-1/+1
|\ \ \ | |_|/ |/| | | | | | | | Ensure pressed is set to false in BaseButton::_unpress_group. [ci skip]
| * | Ensure pressed is set to false in BaseButton::_unpress_group.Ferenc Arn2017-09-211-1/+1
| | |
* | | RichTextLabel: Added get_visible_line_count method.Ferenc Arn2017-09-212-16/+54
|/ / | | | | | | Also exposed get_line_count to GDScript.
* | Merge pull request #11453 from djrm/pr_visualsRémi Verschelde2017-09-211-1/+1
|\ \ | | | | | | Visual tweaks.
| * | Visual tweaks.Daniel J. Ramirez2017-09-201-1/+1
| | | | | | | | | | | | | | | Updated icons Updated some color
* | | Rename pos to position in user facing methods and variablesletheed2017-09-2016-96/+96
|/ / | | | | | | | | | | | | | | | | | | | | Rename user facing methods and variables as well as the corresponding C++ methods according to the folloming changes: * pos -> position * rot -> rotation * loc -> location C++ variables are left as is.
* | Merge pull request #11256 from djrm/pr_visual_improvementsRémi Verschelde2017-09-191-3/+6
|\ \ | | | | | | Visual improvements and new look for VS
| * | Improved VisualScriptEditorDaniel J. Ramirez2017-09-141-3/+6
| | |
* | | Merge pull request #10437 from groud/2d_editor_enhancementsRémi Verschelde2017-09-191-1/+1
|\ \ \ | |_|/ |/| | Some 2d editor enhancements
| * | Add some options and reorganize the 2D editor menus. Makes available forced ↵Gilles Roudiere2017-09-181-1/+1
| | | | | | | | | | | | snapping.
* | | Merge pull request #11372 from volzhs/fix-smooth-scrollRémi Verschelde2017-09-181-4/+4
|\ \ \ | | | | | | | | Fix smooth scrolling in ScrollBar
| * | | Fix smooth scrolling in ScrollBarvolzhs2017-09-181-4/+4
| | | | | | | | | | | | | | | | fixes #11369
* | | | Merge pull request #11021 from tuga3d/autocomplete-logic-attempt2Rémi Verschelde2017-09-182-0/+6
|\ \ \ \ | |_|/ / |/| | | autocomplete logic attempt 2, fixes #10695
| * | | second take at autocomplete logic, using a TextOperation check.Paulo Gomes2017-09-062-0/+6
| | | |
* | | | Merge pull request #11328 from Paulb23/left_right_arrow_tree_issue_10737Rémi Verschelde2017-09-171-29/+70
|\ \ \ \ | | | | | | | | | | Added Left / Right arrow navigation in tree, issue 10737