summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2016-10-09Merge pull request #6717 from Hinsbart/focus_crashRémi Verschelde
Prevent crash on focus change when no valid next control has been found.
2016-10-09Merge pull request #6716 from Hinsbart/completion_fixRémi Verschelde
Fix code completion drawing under other gui elements.
2016-10-09Merge pull request #6707 from volzhs/graphnodeRémi Verschelde
Expose selected value of GraphNode
2016-10-09Merge pull request #6705 from volzhs/grapheditRémi Verschelde
Fix GraphEdit grab random node when delete or deselect by clicking empty space
2016-10-09Merge pull request #6673 from J08nY/issue-update-spinnerRémi Verschelde
Fix #6653, add an option to stop the update spinner from spinning
2016-10-09Merge pull request #6553 from pkowal1982/treecheckboxRémi Verschelde
Use full width of TreeItem::Cell to change value in CELL_MODE_CHECK
2016-10-05Fix code completion drawing under other gui elements.Andreas Haas
Raises the z-index of the Script editor when the completion is shown. fixes #1257 fixes #6690
2016-10-05Prevent crash on focus change when no valid next control has been found.Andreas Haas
Fixes the crash discussed in #6714.
2016-10-05Expose selected value of GraphNodevolzhs
2016-10-05Fix GraphEdit grab random node when delete or deselect by clicking empty spacevolzhs
2016-10-03Merge pull request #6640 from Hinsbart/color_pickerRémi Verschelde
Add inline ColorPicker to Script text editor.
2016-10-03Merge pull request #6634 from zaps166/fix-resampler-crashRémi Verschelde
Don't crash when video is stopped and played again
2016-10-03Merge pull request #6529 from pkowal1982/scrolltreeRémi Verschelde
Add scrolling to Tree control in Drag and Drop mode
2016-10-03Merge pull request #6513 from Brickcaster/masterRémi Verschelde
Fix for issue #6496: ItemList does not immediately scroll down to section
2016-10-01PopupMenu: added toggle_item_checked and exposed set_item_tooltip and ↵J08nY
get_item_tooltip
2016-09-29Add inline ColorPicker to Script text editor.Andreas Haas
Adds an option to the script editor context menu that lets you open a ColorPicker in order to easily edit `Color()` constructors. To do this, right click on the word `Color` and select `Pick Color`. A side effect of this change is that the script editor now has its own context menu instead of re-using the one from TextEdit. It's now possible to indent left/right and to toggle comments via this menu. I also felt free to make it more context-sensitive than before: Now "Cut" and "Copy" will only be shown if text has actually been selected. I also added default shortcuts for indent left/right. (alt + left/right) Closes #6232
2016-09-28LineEdit long indicator, fix #6624Pawel Kowal
2016-09-28Don't crash when video is stopped and played againBłażej Szczygieł
2016-09-19Use full width of TreeItem::Cell to change value in CELL_MODE_CHECKPawel Kowal
2016-09-19Fix ability to cut/paste text in LineEdit/TextEdit in readonly mode.Andreas Haas
Fixes #6466
2016-09-17Add scrolling to Tree control in Drag and Drop modePawel Kowal
2016-09-16Fix for issue #6496Brickcaster
Canged order of NOTIFICATION_DRAW to update scrollbar before scrollbar is checked to see which list elements to display.
2016-09-13fix ScrollContainer cannot scroll when scroll bar is hiddensanikoyes
2016-09-12Do ctrl-click on any code identifier to go to definiton or help page.Juan Linietsky
2016-09-11Add argument options for the theme override functions in ControlJuan Linietsky
2016-09-11-Added a ColorFrame control, kind of like Texture but for color.Juan Linietsky
-Added dropping nodes to text editor for them to become a path -Fixed issues with font not properly being set in code editor
2016-09-11-Cleaned up find/replace bar for replace (made selection only default if ↵Juan Linietsky
selection exists), also made buttons look like buttons -Fixed a bug related to theme propagation, may be able to solve #6443, #6302 and others. Please test.
2016-09-10-Added bindings to the resource filesystem for editorJuan Linietsky
-Added set_child_rect, which was unavailable for script
2016-09-10Merge pull request #5920 from 29jm/fix-warningsJuan Linietsky
Fix some more warnings
2016-09-10Merge pull request #5942 from pkowal1982/scrollJuan Linietsky
ScrollContainer expand children bug fix
2016-09-09Added get_v_scroll to item list, issue 5343Paulb23
2016-09-07Merge pull request #6423 from bebae/issue-6143George Marques
fixed wrong placement of AcceptDialog Buttons issue-6143
2016-09-07Explicitly initialize TextureProgress's initial angle value.MarianoGNU
(Hopefully) Fixes #3856 Fixes #6426 Fixes #6344
2016-09-07fixed wrong placement of AcceptDialog Buttons issue-6143bebae
2016-09-07Merge pull request #6420 from Paulb23/itemlist_tooltip_disable_issue_6240Rémi Verschelde
Itemlist tooltip disable issue 6240
2016-09-07Ability to disable item list tooltip, issue 6240Paulb23
2016-09-07LineEdit: Quick fix to set_expand_to_text_length argument nameRémi Verschelde
2016-09-06-Added diectly editable expressions on node to VSEditor, closes #6392Juan Linietsky
-Added ability for LineEdit to expand to fit text
2016-09-06Better snapping for graph ports, closes #6394Juan Linietsky
2016-09-05Merge pull request #6372 from waldson/masterRémi Verschelde
Fixes LineEdit text selection with mouse selecting more than intended
2016-09-03Connection hints when connecting to empty space.Juan Linietsky
2016-09-02Fixes LineEdit text selection with mouse selecting more than intendedWaldson Patrício
2016-09-02-Added focus to comment nodeJuan Linietsky
-Make comment node not grab focus on main area
2016-08-30More visual script improvementsJuan Linietsky
-Added anti-aliasing on lines -Improved draw performance enormously -Removed sequence ports for most nodes, current visual scripts will likely be broken now. Sorry!
2016-08-30Merge pull request #5262 from vnen/button-signalsRémi Verschelde
Add button_down and button_up signals
2016-08-29Merge pull request #6264 from MasonAsh/issue-6263Rémi Verschelde
Fix sliders incorrectly calculating value on click
2016-08-29Merge pull request #6220 from volzhs/issue-5789Rémi Verschelde
Make LineEdit not to cover whole line when rename node
2016-08-29Merge pull request #5956 from djrm/tree_behaviorRémi Verschelde
Double click on scene tree element to focus currently selected node
2016-08-28Merge pull request #6249 from volzhs/issue-6121Rémi Verschelde
Show last added action on Input Map
2016-08-28Show last added action on Input Map and implement InputEvent "=="volzhs