summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2020-10-19Fixup `ColorRect` and `TextureRect` renamesAndrii Doroshenko (Xrayez)
2020-10-18Refactor MethodBind to use variadic templatesreduz
Removed make_binders and the old style generated binders.
2020-10-13Fixed main gutter not drawing on item togglePaulb23
2020-10-13Remove redundant property "enabled_focus_mode"FIF15
Fixes #41529.
2020-10-13Respect Tree.set_icon_max_width size for drawing selection boxvolzhs
2020-10-02Updated getters and setters names for toplevelDuroxxigar
2020-10-02Merge pull request #42451 from Duroxxigar/rename-toplevelRémi Verschelde
Renamed toplevel to be top_level
2020-10-01Merge pull request #38743 from arrowinaknee/node-config-warningsRémi Verschelde
Update all get_configuration_warning() to retrieve warnings from the parent
2020-10-01Renamed toplevel to be top_levelDuroxxigar
2020-09-29Merge pull request #41895 from 11thPenguin/masterRémi Verschelde
Fix minor typo, gui_hid -> gui_hide
2020-09-28Merge pull request #42092 from DashCell/dropping_file_on_parrent_directory_fixRémi Verschelde
Dropping file on parent directory fixed
2020-09-24Merge pull request #42066 from dalexeev/output_copyRémi Verschelde
Improvement for the Copy button in the Output Log
2020-09-18Fix popup menu item selected when opening the menuPouleyKetchoupp
In order to allow selecting items by either holding left click, or click to open and click again to select, mouse button release was invalidated based on the amount of mouse motion. This was causing issues in some scenarios where an item could be selected while opening the menu if the mouse moved enough between button press and release. This case could happen in the language selection of the project manager, especially on linux, because of the order and timing of the mouse events on x11. This change invalidates mouse release based on a timing condition rather than moved distance to handle any case from the display server properly.
2020-09-16Dropping file on parrent dirrectory fixedDashcell
2020-09-15Merge pull request #41776 from EricEzaM/PR/tooltip-bugfixesRémi Verschelde
Tooltip flickering and targeting fixes.
2020-09-15Tooltip flickering and targeting fixes.Eric M
2020-09-14Improvement for the Copy button in the Output LogDanil Alexeev
Now if no text is selected, pressing the Copy button copies the entire text.
2020-09-12Merge pull request #41995 from Rubonnek/disconnect-item-rect-changedRémi Verschelde
Disconnect item_rect_changed removing a child of GraphEdit
2020-09-11Disconnect item_rect_changed when removing a child of GraphEditWilson E. Alvarez
2020-09-11Remove bit fields and use fixed width integers instead.Marcel Admiraal
2020-09-11Merge pull request #41971 from nekomatata/richtextlabel-align-pointerRémi Verschelde
Fix RichTextLabel alignment for clickable regions
2020-09-11Fix RichTextLabel alignment for clickable regionsPouleyKetchoupp
Fixes #41006 (regression from #39164). The original alignment fix was limited to PROCESS_DRAW mode, which caused some discrepancies with PROCESS_POINTER mode. Now only PROCESS_CACHE is excluded with a condition a few lines above.
2020-09-10Move safe line color into editorPaulb23
2020-09-10Move ConnectionGutter to editor code_editorPaulb23
2020-09-10Add folding gutter to code_editPaulb23
2020-09-10Add main_gutter (breakpoints, bookmarks, execution lines) to code_editPaulb23
2020-09-10Changed line_edited_from(from) to lines_edit_from(from, to)Paulb23
2020-09-10Added Line numbers to CodeEditPaulb23
2020-09-10Added gutter system to TextEditPaulb23
2020-09-10Add and convert editor to use CodeEditPaulb23
2020-09-10Merge pull request #41890 from YeldhamDev/tabs_previousRémi Verschelde
Add 'get_previous_tab()' to 'Tabs'
2020-09-10Merge pull request #41920 from Chaosus/fix_colorpickerRémi Verschelde
Fix ColorPickerButton to apply changes after picker popup closed
2020-09-09Rename ShortCut to Shortcut which is more grammatically correctHugo Locurcio
See https://github.com/godotengine/godot/issues/16863#issuecomment-685236980.
2020-09-09Fix ColorPickerButton to apply changes after picker popup closedYuri Roubinsky
2020-09-08Fixed minor typo, gui_hid -> gui_hide.Jonah Stich
2020-09-08Add 'get_previous_tab()' to 'Tabs'Michael Alexsander
2020-09-08Check if old mouse column is still available.Marcel Admiraal
2020-09-08Merge pull request #41870 from nekomatata/fix-line-edit-enter-regressionRémi Verschelde
Fix LineEdit not consuming enter events
2020-09-08Fix LineEdit not consuming enter eventsPouleyKetchoupp
LineEdit should not return early when processing KEY_ENTER, so it can consume the event properly. Regression introduced by mistake while fixing enter events for Android (PR #40487 - c0b394572f35498801571ad7176eb357d5de1bf3)
2020-09-07Use != 0 instead of > 0 when checking bit mask.Marcel Admiraal
2020-09-06Fixed get_usable_parent_rect() errors when initialising popup menus.Eric M
2020-09-05Merge pull request #40649 from themvl/masterRémi Verschelde
Fix bug where leading and trailing spaces werent taken into account with center and right allignment
2020-09-04Merge pull request #41689 from nathanfranke/fix-popupmenu-unresponsiveRémi Verschelde
Fix PopupMenu unresponsive on right side of menu
2020-09-03[Complex Test Layouts] Change `String` to use UTF-32 encoding on all platforms.bruvzg
2020-09-03Merge pull request #41456 from nekomatata/x11-fix-popupsRémi Verschelde
Popup fixes for X11 display server
2020-09-02Fix PopupMenu unresponsive on right side of menuNathan Franke
2020-09-01Revert "Updated LineEdit to address #41278"Rémi Verschelde
This reverts commit 71febfd6e2f6187fcc106ce715124cf173bfa0b8.
2020-09-01PopupMenu rework and enhancementsEricEzaM
Many scrolling behaviour improvements and the ability to limit popup size.
2020-08-31Fix bug where leading and trailing spaces werent taken into account with ↵mvl
center and right allignment.
2020-08-26Updated LineEdit to address #41278Tony-Goat
Updated set_max_length() function to actually pull a substring of the current text so it's not all thrown away when the new max length is shorter than the current length.