summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2016-07-11Added completion font colorsPaulb23
2016-07-10Merge pull request #5627 from Paulb23/fixed_highlighting_highlighted_sectionRémi Verschelde
Fixed highlight all occurrences highlighing highlighted section
2016-07-10Merge pull request #5606 from akien-mga/pr-rtl-raw-textJuan Linietsky
RichTextLabel: Fix adding raw text when bbcode is disabled
2016-07-10Merge pull request #5489 from jejung/richtextlabel-get_textJuan Linietsky
RichTextLabel-get_text
2016-07-10Fixed highlight all occurrences highlighing highlighted sectionPaulb23
2016-07-10LineEdit placeholder now accepts translated strings.Ovnuniarchos
2016-07-09line/col label was changing size with each cursor move, forcing the GUI to ↵Juan Linietsky
resize upwards and costing considerably CPU usage. It has been changed so it won't resize the UI when modified. This will make the code editor feel a lot smoother.
2016-07-09Changed tree so shift-selection skips folded children, closes #5515Juan Linietsky
2016-07-09RichTextLabel: Fix adding raw text when bbcode is disabledRémi Verschelde
Fixes #5605.
2016-07-07Remove unused variables (third pass) + dead codeRémi Verschelde
Fixes various gcc 5.4.0 warnings for -Wunused-variable and -Wunused-but-set-variable
2016-07-04Fix TreeItem range editing by dragging on the inspectorFranklin Sobrinho
2016-07-03Fix completion string check when column = 0George Marques
2016-07-03Stop completion when the match is perfectGeorge Marques
to avoid the completion insisting showing up after a completion.
2016-07-03Fix code completion sortingGeorge Marques
2016-07-01Fixed the order of input, reverts #4384, closes #5361Juan Linietsky
2016-07-01Color picker was getting too much focus, made it get not as much focus.Juan Linietsky
This abuse of focus was the original culprit of #5354
2016-06-30throw error if GridContainer::set_columns goes below 1, closes #5316Juan Linietsky
2016-06-30Only emit item_selected once per Tree row, closes #5280Juan Linietsky
2016-06-30Fixed signal connection prints when moving docks, issue 5498Paulb23
2016-06-30Merge pull request #5449 from sanikoyes/Pr-placeholder-line-editRémi Verschelde
Add placeholder property for line_edit
2016-06-30Merge pull request #5419 from djrm/shortcutsRémi Verschelde
Shortcuts for script switching in script Mode
2016-06-30Merge pull request #5487 from Paulb23/function_highlighting_issue_5454Rémi Verschelde
Fixed function highlighting with spaces
2016-06-29Merge pull request #5429 from Paulb23/selected_text_highlighting_issue_5199Juan Linietsky
Fixed selected text turning black, issue 5199
2016-06-29Adding support to get the raw text without formatting information from a ↵Jean Jung
RichTextLabel.
2016-06-29Fixed function highlighting with spacesPaulb23
2016-06-28itemlist-get_selected_itemsJean Jung
2016-06-28add placeholder alpha propertysanikoyes
2016-06-27Figured out a way to fix event propagation for shortcuts and some other ↵Juan Linietsky
cases so they properly stop shortcuts if a modal window is open, closes #4848
2016-06-27Add a small workaround to avoid modal tabs to be closed if they are spawned ↵Juan Linietsky
in the same frame, closes #3837
2016-06-27Ability to rotate controls using tool, closes #3800Juan Linietsky
2016-06-27Add placeholder property for line_editsanikoyes
this useful for user input tip
2016-06-26Fixed selected text turning black, issue 5199Paulb23
2016-06-26Shortcuts for script switching in script ModeDaniel J. Ramirez
2016-06-26Merge pull request #5307 from MarianoGnu/masterRémi Verschelde
TextureRegion improvements
2016-06-24Merge pull request #5379 from neikeq/pr-issue-5375Rémi Verschelde
Fix weird deselection behaviour with text field
2016-06-24Merge pull request #5328 from Paulb23/line_edit_caretRémi Verschelde
Added caret blink to line edit
2016-06-24Fix weird deselection behaviour with text fieldIgnacio Etcheverry
- TextEdit will now deselect if Ctrl+Left/Right is pressed - TextEdit and LineEdit no longer deselect text when Alt is pressed (except with Apple style keys)
2016-06-23Make button aware of it being dragged and reset state, closes #4178Juan Linietsky
2016-06-23Fix issue saving flags (size fill expand), fixes #4176Juan Linietsky
2016-06-22Added setting to toggle line edit caret blinkPaulb23
2016-06-22Line edit caret no longer draws on focus lossPaulb23
2016-06-22Added caret blink to line editPaulb23
2016-06-22Merge pull request #5344 from Paulb23/code_completion_colorsRémi Verschelde
Code completion box colors
2016-06-21Added code completion existing color settingPaulb23
2016-06-21Added code completion selected color settingPaulb23
2016-06-21Added code completion background color settingPaulb23
2016-06-20Modify margins with mouse inputMarianoGNU
2016-06-20Fixed caret not drawing on focus regainPaulb23
2016-06-20Merge pull request #5196 from vnen/similarity-code-completionRémi Verschelde
Improve code completion search
2016-06-19Text Edit no longer draws caret on focus lossPaulb23