summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2019-02-16Merge pull request #25953 from nekomatata/fix-radial-texture-progressRémi Verschelde
Fixed TextureProgress in Radial Mode when using center offset
2019-02-16Fixed radial progress with center offset by taking distance to edge into ↵PouleyKetchoupp
account in uv calculation
2019-02-16Fix copy text when TextEdit is readonlyqarmin
2019-02-15Revert "Fix MenuButton item label disappearing when setting shortcut."Rémi Verschelde
2019-02-14Fix MenuButton item label disappearing when setting shortcut.Unknown
2019-02-13Merge pull request #25422 from azagaya/optionbuttonRémi Verschelde
Fix docs about item_selected and item_focused . Fixes #25273
2019-02-13Fix button alignment of Package Installer on OSXNaoto Kondo
This problem occurs only in the HiDPI environment.
2019-02-13Fix typos with codespellRémi Verschelde
Using codespell 1.14.0. Method: ``` $ cat > ../godot-word-whitelist.txt << EOF ang doubleclick lod nd numer que te unselect EOF $ codespell -w -q 3 -I ../godot-word-whitelist.txt --skip="./thirdparty,*.po" $ git diff // undo unwanted changes ```
2019-02-12Scene: Ensure classes match their header filenameRémi Verschelde
Also drop some unused files. Renamed: - `scene/2d/navigation2d.h` -> `navigation_2d.h` - `scene/2d/screen_button.h` -> `touch_screen_button.h` - `scene/3d/scenario_fx.h` -> `world_environment.h` - `scene/audio/audio_player.h` -> `audio_stream_player.h` - `scene/resources/bit_mask.h` -> `bit_map.h` - `scene/resources/color_ramp.h` -> `gradient.h` - `scene/resources/shape_line_2d.h` -> `line_shape_2d.h` - `scene/resources/scene_format_text.h` -> `resource_format_text.h` - `scene/resources/sky_box.h` -> `sky.h` Dropped: - `scene/resources/bounds.h`
2019-02-11Fixes differences between docs and item_selected and item_focused signals in ↵azagaya
optionbutton Description in docs about item_selected and item_focused signals in optionbutton is fixed to match the real behaviour. Also, get_item_index function is added.
2019-02-10General cleanup of script and doc search barsMichael Alexsander Silva Dias
2019-02-04Fixed selection being activated when using scroll linesPaulb23
2019-01-28Small fixup on button toggle behaviour in ColorPickerMichael Alexsander Silva Dias
2019-01-27Make some small enhancements to the ColorPickerMichael Alexsander Silva Dias
2019-01-24Updates containers minimum size when some constants are modifiedgroud
2019-01-24ProgressBar: Set default step to 0.01Rémi Verschelde
Fixes #22655.
2019-01-23Merge pull request #25190 from 99alfie/masterRémi Verschelde
Fix ButtonGroup.get_pressed_button bug
2019-01-21Merge pull request #25064 from homer666/itemlist-adjust-ui_select-precedenceRémi Verschelde
ItemList: ignore `ui_select` action if Select Mode is not "Multi"
2019-01-21ButtonGroup.get_pressed_button bugfix, fixes issue #25057Kraus
2019-01-18Fix a rounding error in ColorPickerHugo Locurcio
This closes #25063.
2019-01-18ItemList: ignore `ui_select` action if Select Mode is not "Multi"homer666
2019-01-16Appease some CppCheck warns for files in the "scene" directoryMichael Alexsander Silva Dias
2019-01-16Update rect size on selectvolzhs
2019-01-14Defer activated signal after tree has been traversed.Juan Linietsky
2019-01-14Hide visible popups by default if visible when entering tree, unless on ↵Juan Linietsky
editor. Fixes #24737
2019-01-08Update IME text only for focused input controls.bruvzg
2019-01-06Fix jumping when scrolling down fast with smooth scroll enabledTimo Schwarzer
Fixes #24773
2019-01-05Fix text edit wrapping beyond control size, issue 23896Paulb23
2019-01-04Merge pull request #24738 from timoschwarzer/24725-fit-child-in-rect-null-checkRémi Verschelde
Check if p_child is not null in Container.fit_child_rect()
2019-01-03Check if p_child is not null in Container.fit_child_rect()Timo Schwarzer
Fixes #24725
2019-01-03Merge pull request #24683 from SoIAS/autocompletion_menu_position_24674Rémi Verschelde
Fixed autocompletion menu vertical position
2019-01-03Fixed autocompletion menu vertical positionDawid Wdowiak
2019-01-02Make GraphEdit lines smoother and scale their width on hiDPI displaysHugo Locurcio
2019-01-01Update copyright statements to 2019Rémi Verschelde
Happy new year to the wonderful Godot community!
2018-12-27Merge pull request #24588 from volzhs/tree-relationship-lineRémi Verschelde
Draw relationship lines when its value is higher than 0
2018-12-27doc: Sync classref with current sourceRémi Verschelde
Fix various code formatting issues and argument names.
2018-12-27Merge pull request #24566 from ↵Rémi Verschelde
thomasruiz/fix/completion-box-center-text-vertically Center lines vertically in completion box
2018-12-25Draw relationship lines when its value is higher than 0volzhs
2018-12-23Fix caret size with font smaller than row heightThomas Ruiz
2018-12-23Center lines vertically in completion boxThomas Ruiz
2018-12-18Fix Word wrap cache desync causing crashPaulb23
2018-12-18Merge pull request #24428 from akien-mga/label-uppercaseRémi Verschelde
Label: Fix kerning when using Uppercase mode
2018-12-17Don't accidentally convert string content to charHein-Pieter van Braam
Due to the right hand side of the :? trickery the rhs was cast to a char losing precision. Previously this didn't matter, but with CharProxy it does. (Previously we could just happily cast it back to a wchar_t and get the original 16 - 32 bits. Now we'll only ever get the first 8).
2018-12-17Label: Fix kerning when using Uppercase modeRémi Verschelde
Seemingly a typo, I did not check what exact impact it had, but the x_ofs would likely have accumulated errors when using fonts with varying char widths.
2018-12-15Fix item highlighting in PopupMenu for items with offsetMichael Alexsander Silva Dias
2018-12-14Prevent FileDialog from stealing focus when setting current file in editorKanabenki
2018-12-14Fix tree item editable cell not updating when windows was resizedGuilherme Felipe
2018-12-14Expose ButtonGroup's "get_buttons()" to GDScriptMichael Alexsander Silva Dias
2018-12-13Merge pull request #22870 from semtri/godot-issue-7620Rémi Verschelde
Fix richtextlabel meta links shouldn't open when swiping to scroll
2018-12-13Revert "Use more subtle indentation guides in the script editor"Rémi Verschelde