summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2018-07-15* Small hex/float/integer parsing refactoringOverblob
* Potential bug fix on hex (cannot be used atm) * Added optional typing for floats, eg: "1f" -> "1.0" "1.f" -> "1.0" "1.99f" -> "1.99" "1." -> "1.0"
2018-07-12Merge pull request #20068 from Xrayez/submenu-popup-delayMax Hilbrunner
Add ability to set submenu's popup delay time on mouse hovering
2018-07-10fix ColorPickerButton.get_popup()Alexander Holland
2018-07-09Add ability to set submenu's popup delay time on mouse hoveringAndrii Doroshenko (Xrayez)
This allows to set delay time for the submenu to popup. Setting this value low can increase responsiveness. If the popup menu is added as a child of another (acting as a submenu), it will inherit the delay time of the parent menu item.
2018-07-07Added scrollable property to SlidersChaosus
2018-07-05Merge pull request #19498 from guilhermefelipecgs/fix_regressionMax Hilbrunner
Fix "find and replace" initializing with wrong size
2018-07-05Merge pull request #19735 from Paulb23/text_offset_issue_15688Max Hilbrunner
Fixed text drawing too high in TextEdit, issue 15688
2018-07-05Merge pull request #19351 from guilhermefelipecgs/fix_reversed_textMax Hilbrunner
Fixes to the new inspector
2018-07-05Merge pull request #19187 from Zirak/editor-autocomplete-quoteMax Hilbrunner
Editor autocomplete won't insert unnecessary quotes
2018-07-05Merge pull request #18028 from gabrii/18026Max Hilbrunner
Fix #18026. Expose TextEdit::set_draw_breakpoint_gutter.
2018-07-04Fixes to the new inspectorGuilherme Felipe
- Fix inspector dock not updating tree for main resource; - Fixes the inspector input text reverted during typing; - Add method bind for "refresh" used by MultiNodeEdit;
2018-07-04Fixes control nodes size not updated when outside the treegroud
2018-07-04Merge pull request #19782 from Calinou/fix-control-pixel-snap-roundingRémi Verschelde
Fix control pixel snap rounding using floor() instead of round()
2018-07-03Merge pull request #17438 from Deluvi/get-word-pos-quote-fixMax Hilbrunner
get_word_at_pos considers simple and double quotes
2018-07-03Merge pull request #18634 from groud/fix_control_child_of_node2dMax Hilbrunner
Fixes the bad calculation of margin & anchors when child of Node2D
2018-07-03Merge pull request #19244 from Chaosus/settingsperformance_and_colordeferredMax Hilbrunner
Increases settings apply speed and added deferred color setting to ColorPicker
2018-07-03Merge pull request #19565 from robojumper/fixed_edge_scrollMax Hilbrunner
Re-enable scrolling via selecting code beyond edges in text_edit.cpp
2018-07-02-Fixes to how hashing happened, now StringName and NodePath use default ↵Juan Linietsky
hasher, this was leading to some severe slowdown in scenarios -Fixes to some duplication scenarios for instanced scenes
2018-07-01Merge pull request #19875 from willnationsdev/meta-underlinedGeorge Marques
Fix underline_meta not working in RichTextLabel
2018-07-01Center text drawing in LineEditPaulb23
2018-07-01Fix performance for godot's interfaceGuilherme Felipe
2018-07-01Fix underline_meta not working in RichTextLabelWill Nations
2018-06-27Changes to how node paths are selected from property, allowing setting a hint.Juan Linietsky
2018-06-26Fix control pixel snap rounding using floor() instead of round()Hugo Locurcio
This resulted in small leftwards/upwards movement of controls being faster than it should be. This closes #19763.
2018-06-24Fixed text drawing too high in TextEdit, issue 15688Paulb23
2018-06-18-Added AnimationGraphPlayer (still missing features)Juan Linietsky
-Added ability to edit resources from built-in inspector (wip, needs testing and feedback)
2018-06-14Re-enable scrolling via selecting code beyond edges in text_edit.cpprobojumper
2018-06-13Fix "find and replace" initializing with wrong sizeGuilherme Felipe
Fix the code editor outside the allowed limits.
2018-06-13LineEdit IME position will now ignore placeholder text.Saracen
2018-06-13Merge pull request #19509 from SaracenOne/imeRémi Verschelde
IME context detection.
2018-06-12Fix TabContainer not showing tabs on left when resizing.Guilherme Felipe
Fix #19510.
2018-06-11IME context detection.Saracen
2018-06-09Merge pull request #18298 from gabrii/TextEditScaledSelectionMax Hilbrunner
TextEdit scaled selection
2018-06-08Merge pull request #19334 from guilhermefelipecgs/fix_popupJuan Linietsky
Fixes popup_centered_* methods, dialogs with wrong sizes and visual script editor
2018-06-07Fixes the bad calculation of margin & anchors when child of Node2Dgroud
2018-06-07Entirely new (and much improved) animation editor.Juan Linietsky
2018-06-06Fix #16069, #19292, #19267 and #18940Guilherme Felipe
2018-06-06expose lineeditAlexander Holland
2018-05-31Increase settings apply speed and added deferred color applyChaosus
2018-05-30Improve breakpoints and breakpoint gutter API in TextEditGabriel Gavilan
Added breakpoint_gutter, is_breakpoint_gutter_enabled, set_breakpoint_gutter_enabled, get_breakpoints, remove_breakpoints. Fixed breakpoint_toggled signal not fierd when text is edited. Fixes #18026.
2018-05-26Editor autocomplete won't insert unnecessary quotesZirak
When autocompleting a string (e.g. emit_signal or connect), e.g. emit_signal('visibility_c') ^ where "^" is the cursor, hitting <tab> would insert an unnecessary quote, breaking the string: emit_signal('visibility_changed'') This commit adds a small lookahead, so the end result will be as the user probably expected: emit_signal('visibility_changed')
2018-05-24Ensures CMD+left and CMD+right only valid for OSX.Anish
Fix in #18370 is now only valid for OSX and is reverted for other OS. Fixes #19042
2018-05-19fix for TextEdit::set_text firing signals it shouldn't.Ibrahn Sahir
Removing some _changed signals in set_ functions. Includes revert of commit 384625aa31a3627c25246e06c1fbc3019866765c
2018-05-18Merge pull request #19017 from toger5/fix_no_a_input_script_editor_osxRémi Verschelde
fixed capital A osx
2018-05-18fixed capital A osxtoger5
2018-05-18Revert "Fix color-picker sliders"Rémi Verschelde
2018-05-17Fix color-picker slidersMartin Capitanio
2018-05-17-Ability to open resources in the same windowJuan Linietsky
-Plenty of fixes and improvements to new inspector -Fixes that were needed to make inspector work better
2018-05-17Merge pull request #18862 from endragor/remove-font-width-ceilingRémi Verschelde
Ceil char width within Label instead of Font
2018-05-16Allow editing of some unbound properties when hinted (or no range hinted)Juan Linietsky