summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
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-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-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
2019-05-29Remove some redundant linesJames Buck
2019-05-29Merge pull request #29261 from volzhs/fix-basebuttonRémi Verschelde
Fix BaseButton not emitting signal with virtual function
2019-05-29Fix BaseButton not emitting signal with virtual functionvolzhs
Fix #29258
2019-05-28Fix some unincialised variablesqarmin
2019-05-28Merge pull request #27836 from turtletooth/right-clickRémi Verschelde
Allow Right Click in Empty Space on FileSystemDock
2019-05-28Merge pull request #28454 from homer666/popup-centered-maxsizeRémi Verschelde
Add `popup_centered_clamped()` method to Popup
2019-05-28Merge pull request #28726 from megalike/add_mac_os_hotkeys_leRémi Verschelde
Support Mac OS hotkeys in line_edit
2019-05-28Merge pull request #29174 from Chaosus/fix_line_wrap_outputRémi Verschelde
Fix "Index out of size" TextEdit's spam to output (when using Expression nodes in the visual shaders)
2019-05-27Fix uninitialised member variable 'meta_hovering' in RichTextLabelIbrahn Sahir
2019-05-26Fix TextEdit blocking scroll without scrollbarTomasz Chabora
2019-05-25Fix "Index out of size" TextEdit's spam to outputChaosus
2019-05-24Merge pull request #29078 from KoBeWi/scroll_stuffRémi Verschelde
Improvements to scroll handling
2019-05-24Merge pull request #28811 from iwek7/editor_remove_spaces_to_closes_indentionRémi Verschelde
Change rules of indenting for spaces
2019-05-24Merge pull request #29067 from KoBeWi/spin_editRémi Verschelde
Pass mouse events to SpinBox from its LineEdit
2019-05-24Merge pull request #29060 from volzhs/toggled-groupRémi Verschelde
Refactor BaseButton event handling
2019-05-24Improvements to scroll handlingTomasz Chabora