summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2017-01-02Merge remote-tracking branch 'origin/gles3' into gles3-on-masterRémi Verschelde
Various merge conflicts have been fixed manually and some mistakes might have been made - time will tell :)
2017-01-02Merge pull request #7341 from bruno-ortiz/masterRémi Verschelde
Bugfixes for Tree node
2017-01-02Merge pull request #7385 from bojidar-bg/tree-range-drag-lockRémi Verschelde
Fix #7098 by not accepting right clicks while dragging the range
2017-01-02Making deselect work for TreeItem when select_mode is SELECT_SINGLE and ↵Bruno Ortiz
item_selected is now properly emitted
2017-01-02Merge pull request #7382 from volzhs/fix-visibilityRémi Verschelde
Able to change visibility when ancestor node is hidden
2017-01-02Merge pull request #7376 from volzhs/scroll-horizontalRémi Verschelde
Scroll horizontally with mouse wheel when horizontal enabled only
2017-01-02Merge pull request #7372 from chanon/masterRémi Verschelde
Fix ColorPicker not correctly updating after pasting hex html color
2017-01-01Welcome in 2017, dear changelog reader!Rémi Verschelde
That year should bring the long-awaited OpenGL ES 3.0 compatible renderer with state-of-the-art rendering techniques tuned to work as low as middle end handheld devices - without compromising with the possibilities given for higher end desktop games of course. Great times ahead for the Godot community and the gamers that will play our games!
2016-12-28Fix #7098 by not accepting right clicks while dragging the rangeBojidar Marinov
2016-12-28Show visual notice for visibility on Scene Dockvolzhs
2016-12-27Scroll horizontally with mouse wheel when horizontal enabled onlyvolzhs
2016-12-26fix ColorPicker not correctly updating after pasting hex html colorchanon
2016-12-23Merge pull request #7349 from volzhs/fix-richtextlabelRémi Verschelde
Fix duplicated string on RichTextLabel if starts with '\n'
2016-12-23Merge pull request #7330 from darkfoxprime/#7326-fix-whole-word-searchRémi Verschelde
Fix search to find "whole" words at end of line
2016-12-23PopupMenu upgrade: Hide on item selection (#7306)Ivan P. Skodje
* Added the option to set hide on item selection. Usable in GDScript and from within the source code when you want to specify popup menus you don't want to close immediately when selecting an item * Renamed getter from get_ to is_, fixed parent/child behavior, renamed bool variable to match most code and added ADD_PROPERTYNO to save some memory
2016-12-22Fix duplicated string on RichTextLabel if starts with '\n'volzhs
Fix #6212, #3773
2016-12-18Fix search to find "whole" words at end of lineJohnson Earls
Fix `_get_column_pos_of_word` so that the `SEARCH_WHOLE_WORDS` flag will properly find words that are at the end of a line. Fixes #7326 .
2016-11-28Merge pull request #7200 from volzhs/fix-anim-scrollRémi Verschelde
Fix scroll bar moving in AnimationPlayer editor
2016-11-28Merge pull request #7198 from volzhs/fix-color-pickerRémi Verschelde
Fix color selected with mouse scroll
2016-11-28Merge pull request #7184 from volzhs/spinboxRémi Verschelde
Prevent Spinbox value update while not focused or disabled
2016-11-28Merge pull request #7157 from leezh/buttonarray_fixesRémi Verschelde
Flat button support in ButtonArray. Fixes #7153
2016-11-28Fix scroll bar moving in AnimationPlayer editorvolzhs
Fix #7196
2016-11-28Fix color selected with mouse scrollvolzhs
Fix #7192
2016-11-25Prevent Spinbox value update while not focused or disabledvolzhs
2016-11-21Merge pull request #7145 from avril-gh/fixes-6464-lost-iconsRémi Verschelde
fixes #6464 lost icons in dock and file dialog, also #6443 , #6302
2016-11-19Flat button support in ButtonArray. Fixes #7153Zher Huei Lee
2016-11-18fixes #6464 lost icons in dock and file dialog, also #6443 , #6302Avril
Fixes lost icons in docks, file manager, sample library, settings and various other places.
2016-11-17Select exactly matched file automatically in FileDialogvolzhs
2016-11-14Merge pull request #7109 from volzhs/emit-signal-from-setGeorge Marques
Emit "*_changed" signal in set_*
2016-11-14Merge pull request #7107 from eska014/wasmRémi Verschelde
Some WebAssembly stuff
2016-11-14Emit "*_changed" signal in set_*volzhs
2016-11-13Clarify a NULL comparisoneska
'TreeItem::get_children()' does not return the child count, but rather a pointer to the children. This comparison caused an error during WebAssembly builds using the LLVM backend path.
2016-11-11Merge pull request #6833 from Elinvention/masterRémi Verschelde
Make the step property useful for sliders
2016-11-09Merge pull request #7052 from Paulb23/text_edit_color_uniformationRémi Verschelde
Made background and symbol color follow the color API
2016-11-07Fix Label valign positionvolzhs
Fix #7055
2016-11-06Caret blink will no longer cause redraw without focus, issue 6167Paulb23
2016-11-06Made background and symbol color follow the color APIPaulb23
2016-11-06Merge pull request #7036 from volzhs/spinbox-prefixRémi Verschelde
Fix updating value of SpinBox with prefix
2016-11-06Merge pull request #7009 from volzhs/fix-double-clickRémi Verschelde
Fix to focus or rename node by double click
2016-11-05Fix updating value of SpinBox with prefixvolzhs
2016-11-04fix a tiny typoScotFlux
2016-11-02Merge pull request #7004 from volzhs/fix-itemlistRémi Verschelde
Fix to fit stylebox with ItemList
2016-11-01Fix to focus or rename node by double clickvolzhs
2016-11-01style: Fix PEP8 whitespace issues in Python filesRémi Verschelde
Done with `autopep8 --select=E2,W2`, fixes: - E201 - Remove extraneous whitespace. - E202 - Remove extraneous whitespace. - E203 - Remove extraneous whitespace. - E211 - Remove extraneous whitespace. - E221 - Fix extraneous whitespace around keywords. - E222 - Fix extraneous whitespace around keywords. - E223 - Fix extraneous whitespace around keywords. - E224 - Remove extraneous whitespace around operator. - E225 - Fix missing whitespace around operator. - E226 - Fix missing whitespace around operator. - E227 - Fix missing whitespace around operator. - E228 - Fix missing whitespace around operator. - E231 - Add missing whitespace. - E231 - Fix various deprecated code (via lib2to3). - E241 - Fix extraneous whitespace around keywords. - E242 - Remove extraneous whitespace around operator. - E251 - Remove whitespace around parameter '=' sign. - E261 - Fix spacing after comment hash. - E262 - Fix spacing after comment hash. - E265 - Format block comments. - E271 - Fix extraneous whitespace around keywords. - E272 - Fix extraneous whitespace around keywords. - E273 - Fix extraneous whitespace around keywords. - E274 - Fix extraneous whitespace around keywords. - W291 - Remove trailing whitespace. - W293 - Remove trailing whitespace.
2016-11-01Fix to fit stylebox with ItemListvolzhs
2016-10-31Fix Accept/ConfirmationDialog UI brokenvolzhs
2016-10-31Revert "Place child control under label in AcceptDialog."volzhs
This reverts commit 3ef272290460670b82621727ba2e876fa0a5a01e.
2016-10-30Revert "make `Container` node aware of `Size Flags`"Rémi Verschelde
This reverts commit 6ed15e995dd83c1cf6808f261066580a1f8bc297. Fixes #6974.
2016-10-30Merge pull request #6950 from rdb/masterRémi Verschelde
Add "Never" underline mode to LinkButton
2016-10-30Merge pull request #6928 from razvanc-r/fix-containerRémi Verschelde
make Container node aware of Size Flags