summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2019-10-29Merge pull request #33091 from MCrafterzz/fix10567Rémi Verschelde
Improved project creation UX
2019-10-29Improved UX of selecting directories in (Editor)FileDialog by hiding unused ↵MCrafterzz
gui elements and moving the drive selection
2019-10-28Merge pull request #33120 from YeldhamDev/popup_dialog_panel_styleRémi Verschelde
Add "panel" style to PopupDialog
2019-10-28Merge pull request #33119 from creikey/fix-quote-malfunctionRémi Verschelde
Remove duplicate quote in displayed quote type
2019-10-27Add "panel" style to PopupDialogMichael Alexsander
2019-10-27Remove duplicate quote in displayed quote typeCameron Reikes
- fixes #32688 - fixes #32593
2019-10-27Merge pull request #33066 from Tabas32/fix_indentationRémi Verschelde
Fixed indenting issue with comment at end of line
2019-10-27Improve performance of connection info in the script editorPaulb23
2019-10-27Merge pull request #33032 from Calinou/filedialog-scroll-to-topRémi Verschelde
Scroll back to the top after opening a directory in FileDialog
2019-10-26Fix text minimap crash when last line is foldedPaulb23
2019-10-25Merge pull request #32870 from bergmannf/27850_rtl_bold_italicRémi Verschelde
Add push_* methods for fonts in rich_text_label
2019-10-25Just initialization, needed by compilerMarian
2019-10-25Fixed indenting issue with comment at end of lineMarian
2019-10-24Don't terminate search if begin_key doesn't fitZatherz
Previously this code would continue onto the next iteration of the loop if the line was smaller in size than begin_key, meaning that a situation where begin_key.length() > end_key.length() would cause weird behavior with newlines. Now both the checks for begin_key and end_key are in their own condition and do not skip the entire iteration if they can't be found.
2019-10-24Fix rendering tooltipvolzhs
2019-10-24Scroll back to the top after opening a directory in FileDialogHugo Locurcio
This also changes the behavior in EditorFileDialog. This closes #26041.
2019-10-24Refactor VideoPlayer and VideoStreamSeleckyErik
VideoStream: - Fix const correctenss VideoPlayer: - Remove unused member variable last_frame - Move _mix_audios function definition to source file - Fix function parameter naming to match p_ convention - Fix const correctness - Add null checking
2019-10-23Merge pull request #32972 from codecustard/fix_spinbox_not_releasingfocusRémi Verschelde
Fixes spinbox not releasing focus on value change
2019-10-22Shadows Now Properly Translate by RichTextEffect offset.Eoin O'Neill
Bugfix 32981.
2019-10-22Merge pull request #32796 from Paulb23/set_text_caretRémi Verschelde
Changed `set_text` to place caret at start of the text.
2019-10-22Merge pull request #32940 from nekomatata/text-edit-clear-colorsRémi Verschelde
TextEdit syntax highlighting fixes
2019-10-22Merge pull request #32965 from volzhs/richtextlabel-scroll-activeRémi Verschelde
Fix scrolling RichTextLabel with scroll_active=false
2019-10-22Fixed crashes when renaming a state in AnimationNodeStateMachineEditorPouleyKetchoupp
Recursive calls to Control::_modal_stack_remove could cause a crash because of the list element not being invalidated while being erased from the list. It happens in the state machine case by hiding a line edit control when it loses focus. Fixes #23808
2019-10-22Merge pull request #32902 from nekomatata/auto-indent-bracket-fixRémi Verschelde
Auto-indent after opening bracket and parenthesis in the script editor
2019-10-22Merge pull request #32864 from nekomatata/rich-text-image-sizeRémi Verschelde
Support for resized images in RichTextLabel
2019-10-22Merge pull request #32833 from nekomatata/label-autowrap-fixRémi Verschelde
Allow Label autowrap to cut words when they exceed line width
2019-10-21Fixes spinbox not releasing focus on value changeEmmanuel Barroga
Trying to release focus of the spinbox's lineedit would not work when done in the "value_changed" callback. The reason is because the "value_change" signal is called first, then the "get_focus" method is called next. This causes the spinbox to get_focus after you try to release focus within the "value_changed" callback. To resolve this, spinbox should get focus first and then emit "value_changed".
2019-10-22Fix scrolling RichTextLabel with scroll_active=falsevolzhs
2019-10-20TextEdit syntax highlighting fixesPouleyKetchoupp
- Fixed visual update when using add_keyword_color(), add_color_region(), clear_colors() in scripts - More accurate description for clear_colors() in TextEdit documentation
2019-10-20Fixed -1 minimap index when smooth scrolling is enabledPaulb23
2019-10-18Auto-indent after opening bracket and parenthesis in the script editorPouleyKetchoupp
This change makes auto-indent work the same way as for curly brackets, so '[', '(', '{' all act the same. Fixes #32897
2019-10-16Add push_* methods for fonts in rich_text_labelFlorian Bergmann
Provides method to push different font styles. If no fonts are set nothing will happen, when the methods are used. Fixes #27850
2019-10-16Support for resized images in RichTextLabelPouleyKetchoupp
BBCode Tag: [img=<width>x<height>]{path}[/img]
2019-10-16Allow Label autowrap to cut words when they exceed line widthPouleyKetchoupp
Fixes #30832
2019-10-15Merge pull request #32820 from qarmin/small_fixes_static_analyzerRémi Verschelde
Small fixes to redundand code, copy paste bugs
2019-10-14Fix color of FileDialog iconsYuri Roubinsky
2019-10-14Small fixes to redundand code, copy paste bugsqarmin
2019-10-13Fix undo / redo scrollbar calulationsPaulb23
2019-10-13Place caret at 0,0 when setting text not at the endPaulb23
2019-10-11Merge pull request #32628 from Paulb23/issue_32609_set_text_scrollbarRémi Verschelde
Fixed inserting text at caret not updating scrollbar size
2019-10-10Remove dependency on the editor directory being in the build's include path.Marcel Admiraal
- Add or remove the necessary subdirectorires to the includes to remove dependency on the editor directory being in the build's include path. - Ensure includes in modified files conform to style guideline. - Remove editor from the build include path.
2019-10-08Merge pull request #32411 from YeldhamDev/fix_grid_overflowRémi Verschelde
Fix GridContainer's children overflowing it when not all slots of a row are occupied
2019-10-08Merge pull request #32571 from DavidSichma/rect_flipRémi Verschelde
Correctly flip texture src region
2019-10-08PopupMenu: Fix missing text/xl_text when using add_shortcutRémi Verschelde
Use macros to ensure that `text`, `xl_text` and `id` are always set using the same logic. Fixes #25519. Also fixes up #26914 when `p_id == -1` handling was only added for a couple methods instead of all of them.
2019-10-08PopupMenu: Reorder add_* methods in more natural orderRémi Verschelde
Also adds `add_icon_radio_check_shortcut` matching `add_icon_radio_check_item`, binds them for scripting languages, and binds `add_multistate_item`.
2019-10-07Fixed inserting text at caret not updating scrollbar sizePaulb23
2019-10-07Fixed drawing the caret at eol when at eol is not visiblePaulb23
2019-10-07Merge pull request #32351 from nekomatata/texture-rect-size-updateRémi Verschelde
Update TextureRect when its Texture is modified directly
2019-10-06Added missing bind_method to TreeItem::get_custom_color().dankan1890
Fix #32595
2019-10-06Merge pull request #32569 from qarmin/fix_control_crashRémi Verschelde
Fix crash in Control functions