summaryrefslogtreecommitdiff
path: root/scene/gui
AgeCommit message (Collapse)Author
2019-03-10Fix cursor going to start while editing GraphNode's titleBojidar Marinov
Fixes #26816
2019-03-07Merge pull request #21534 from volzhs/fix-scrollcontainer-sizeRémi Verschelde
Precise size calculation of ScrollContainer
2019-03-06-Make tileset and meshlibrary edit in a separate inspector, fixes #26671Juan Linietsky
-Made relationship lines appear based on theme settings, not previous hack -Fix drawing of relationship lines (was broken) -Fix double initialization of theme settings
2019-03-05Merge pull request #26642 from DrMoriarty/check_cursor_lineRémi Verschelde
Check cursor line and column
2019-03-05Check cursor line and columnVasiliy Makarov
Added a trivial check if cursor.line and cursor.column are valid. Fix #26245
2019-03-05Fix general issues with filesystem-related UI components in the editorMichael Alexsander Silva Dias
2019-03-03Add a warning when using plain Container, as many users seem to ↵Juan Linietsky
misunderstand what this is.
2019-03-01Fixed some crashers, closes #26393Juan Linietsky
2019-03-01Merge pull request #26140 from karliss/meta-itemRémi Verschelde
Use correct meta item in rich text.
2019-03-01Fixed wrong method binding in controlJustin Vesper
Control.get_parent_area_size() is now bound to Control::get_parent_area_size() instead of Control::get_size()
2019-02-27Fix minimum size of ProgressBar-sBojidar Marinov
Was a leftover from 0a1c1c660fc6aa0689816e85f2b6791c225c6d63. Fixes #21633.
2019-02-25Update controls when a stylebox or icon override changes; change to ↵Bojidar Marinov
CONNECT_REFERENCE_COUNTED Also, cleanup unnessesary calls to update() and NOTIFICATION_THEME_CHANGED. Fixes #25904.
2019-02-22Make 'SplitContainer' update drawing only if actually needs toMichael Alexsander Silva Dias
2019-02-21Fix 'SplitContainer's showing their handles when they shouldn'tMichael Alexsander Silva Dias
Fixes #25735.
2019-02-22Use correct meta item in rich text.Kārlis Seņko
Prevent incorrect static cast and unnecesarry meta_hover_ended/started events.
2019-02-21Merge pull request #26105 from nekomatata/texture-button-mask-fixRémi Verschelde
TextureButton with click mask only can be clicked
2019-02-21Fixed TextureButton click mask when no other texture is setPouleyKetchoupp
2019-02-20Add -Wshadow=local to warnings and fix reported issues.marxin
Fixes #25316.
2019-02-20Merge pull request #26089 from ianb96/word_wrap_cutoff_fixRémi Verschelde
Fix word wrap cutoff and tab wrapping issue
2019-02-20Merge pull request #26049 from vixelz/textureprogress-nineslice-fill-fixRémi Verschelde
Truncate first segment in TextureProgress 9slices
2019-02-20Fix word wrap cutoff and tab wrapping issueianb96
2019-02-19Allow moving LineEdit visible window left by more than one symbol.Kārlis Seņko
2019-02-19Truncate first segment in TextureProgress 9slicesVixelz
Much in the way that TextureProgress was truncating the last segment of the nine slice when the value wasn't close to the end, perform similar work on the beginning segment. This fixes the beginning segment always being drawn, sometimes in the incorrect location.
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