summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2019-06-21Fix some editor crashesqarmin
2019-06-20Merge pull request #29283 from qarmin/fix_some_always_same_valuesRémi Verschelde
Remove always true/false values
2019-06-20Fix always true/false valuesqarmin
2019-06-20Merge pull request #25573 from nekomatata/button-shortcut-fixRémi Verschelde
Fixed shortcut events in BaseButton (now acts the same as ui_accept action)
2019-06-20Fixed shortcut events in BaseButton (now acts the same as ui_accept action)PouleyKetchoupp
2019-06-19Merge pull request #27188 from samH-FIT/MacroUpdateRémi Verschelde
Made use of semicolons after GDCLASS more consistent, added semicolons where I found them missing.
2019-06-19Merge pull request #29902 from KoBeWi/dem_settersRémi Verschelde
Fix set_pick_color error
2019-06-19Made use of semicolons more consitent, fixed formattingJohnJLight
2019-06-19Fix set_pick_color errorTomasz Chabora
2019-06-19Merge pull request #27389 from YeldhamDev/acceptdiag_label_wrapRémi Verschelde
Add option to enable autowrapping for label inside 'AcceptDialog'
2019-06-19Merge pull request #28659 from KoBeWi/rainbow_modeRémi Verschelde
Add HSV mode to color picker
2019-06-18Merge pull request #29489 from groud/fixes_nanRémi Verschelde
Fixes NaN errors with anchors mode
2019-06-17Merge pull request #29847 from yurchor/masterRémi Verschelde
Fix minor typos
2019-06-17Merge pull request #29633 from jbuck3/optionbutton-selectionRémi Verschelde
Connect OptionButton selection to menu's "index_pressed" signal
2019-06-17Fix minor typosYuri Chornoivan
2019-06-17Merge pull request #29838 from KoBeWi/4realRémi Verschelde
Fix selection undo... for real
2019-06-17Fix selection undo... for realTomasz Chabora
2019-06-16Fix Range's "changed" signal emitting with a value even if binded to emit noneMichael Alexsander Silva Dias
2019-06-15Merge pull request #29785 from eligt/fix-richtext-alignmentRémi Verschelde
Fix RichTextLabel alignment tags not working properly
2019-06-15Merge pull request #29787 from Paulb23/fix_negative_cursor_columnRémi Verschelde
Fix TextEdit cursor.column having a negative value
2019-06-14Fix TextEdit cursor.column having a negative valuePaulb23
2019-06-14Fix RichTextLabel alignment tags not working properlyElia Sarti
Also fixes #6982 Fix error and formatting
2019-06-14Merge pull request #29647 from YeldhamDev/file_dialog_hidden_toggleRémi Verschelde
Add toggle for hidden file visibility in FileDialog
2019-06-12Merge pull request #29731 from akien-mga/scene-is-off-limitsRémi Verschelde
Cleanup some unecessary editor/ includes in scene/
2019-06-12Cleanup some unecessary editor/ includes in scene/Rémi Verschelde
Part of #29730, handles false positives.
2019-06-12BaseButton: Make shortcuts call virtual methodsRémi Verschelde
When buttons are not in Toggle Mode, shortcuts used to only trigger the `pressed` signal, without calling the `_pressed` virtual method, contrarily to what happens when you click the button. For Toggle Mode buttons, it did call the `_toggled` virtual method together with emitting the `toggled` signal *twice*. This commit harmonizes it all and makes shortcuts behave the same as mouse clicks or `ui_accept`, for both toggle and non-toggle modes. Fixes #29604.
2019-06-12Merge pull request #29601 from NilsIrl/hiding_enabledRémi Verschelde
Treat hiding_enabled as bool throughout
2019-06-12Merge pull request #29648 from jbuck3/tree-tooltipsRémi Verschelde
Fix Tree button tooltips
2019-06-12Merge pull request #29306 from qarmin/small_code_fixesRémi Verschelde
Small fixes to unrechable code, possibly overflows, using NULL pointers
2019-06-11Merge pull request #29678 from akien-mga/err-macros-semicolonRémi Verschelde
Fix error macro calls not ending with semicolon
2019-06-11Merge pull request #29573 from qarmin/fix_rich_text_process_lineRémi Verschelde
Fix RichLabelText::_process_line crash
2019-06-11Fix error macro calls not ending with semicolonRémi Verschelde
It's not necessary, but the vast majority of calls of error macros do have an ending semicolon, so it's best to be consistent. Most WARN_DEPRECATED calls did *not* have a semicolon, but there's no reason for them to be treated differently.
2019-06-11Merge pull request #29539 from qarmin/fix_crash_with_get_keywords_colorRémi Verschelde
Fix crash with get_keywords_color
2019-06-11Fix third and fourth level (AltGr / ⌥ modifier) keys input in LineEdit.bruvzg
2019-06-09Fix Tree button tooltipsJames Buck
Fixes #22777
2019-06-10Add toggle for hidden file visibility in FileDialogMichael Alexsander Silva Dias
2019-06-09Connect OptionButton selection to menu's "index_pressed" signalJames Buck
Simplifies code and fixes bug where only the first item with a given ID could be selected.
2019-06-08Treat hiding_enabled as bool throughoutNils ANDRÉ-CHANG
2019-06-07Fix RichLabelText::_process_line crashqarmin
2019-06-06Fix crash with get_keywords_colorqarmin
2019-06-04Merge pull request #29469 from bojidar-bg/29446-graphnode-seperationRémi Verschelde
Fix GraphNode not adding separation after the first node
2019-06-04Fixes NaN errors with anchors modeGilles Roudière
2019-06-04Fix GraphNode not adding seperation after the first nodeBojidar Marinov
Fixes #29446
2019-06-04Fix crash when searching Tree with no selectionTomasz Chabora
2019-06-03Merge pull request #26848 from ptrojahn/utf8navigationRémi Verschelde
Support UTF-8 in TextEdit and LineEdit navigation
2019-06-03Small fixes to unrechable code, possibly overflows, using NULL pointersqarmin
2019-06-02Fixed get_item_at_position being weirdTomasz Chabora
2019-06-01Merge pull request #28841 from KoBeWi/option_button_optionsRémi Verschelde
Improvements to incremental search
2019-05-31Fix and expose String::strip_escapes(), use it in LineEdit pasteRémi Verschelde
Supersedes #27736.
2019-05-31Improvements to incremental searchTomasz Chabora