summaryrefslogtreecommitdiffstats
path: root/scene/gui
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #26642 from DrMoriarty/check_cursor_lineRémi Verschelde2019-03-051-1/+1
|\ | | | | Check cursor line and column
| * Check cursor line and columnVasiliy Makarov2019-03-051-1/+1
| | | | | | | | | | Added a trivial check if cursor.line and cursor.column are valid. Fix #26245
* | Fix general issues with filesystem-related UI components in the editorMichael Alexsander Silva Dias2019-03-051-1/+2
|/
* Add a warning when using plain Container, as many users seem to ↵Juan Linietsky2019-03-032-0/+15
| | | | misunderstand what this is.
* Fixed some crashers, closes #26393Juan Linietsky2019-03-011-2/+3
|
* Merge pull request #26140 from karliss/meta-itemRémi Verschelde2019-03-012-5/+8
|\ | | | | Use correct meta item in rich text.
| * Use correct meta item in rich text.Kārlis Seņko2019-02-222-5/+8
| | | | | | | | | | Prevent incorrect static cast and unnecesarry meta_hover_ended/started events.
* | Fixed wrong method binding in controlJustin Vesper2019-03-011-1/+1
| | | | | | | | | | Control.get_parent_area_size() is now bound to Control::get_parent_area_size() instead of Control::get_size()
* | Fix minimum size of ProgressBar-sBojidar Marinov2019-02-271-3/+6
| | | | | | | | | | Was a leftover from 0a1c1c660fc6aa0689816e85f2b6791c225c6d63. Fixes #21633.
* | Update controls when a stylebox or icon override changes; change to ↵Bojidar Marinov2019-02-252-53/+36
| | | | | | | | | | | | | | | | CONNECT_REFERENCE_COUNTED Also, cleanup unnessesary calls to update() and NOTIFICATION_THEME_CHANGED. Fixes #25904.
* | Make 'SplitContainer' update drawing only if actually needs toMichael Alexsander Silva Dias2019-02-221-3/+5
| |
* | Fix 'SplitContainer's showing their handles when they shouldn'tMichael Alexsander Silva Dias2019-02-211-12/+23
|/ | | | Fixes #25735.
* Merge pull request #26105 from nekomatata/texture-button-mask-fixRémi Verschelde2019-02-211-1/+5
|\ | | | | TextureButton with click mask only can be clicked
| * Fixed TextureButton click mask when no other texture is setPouleyKetchoupp2019-02-211-1/+5
| |
* | Add -Wshadow=local to warnings and fix reported issues.marxin2019-02-208-49/+49
|/ | | | Fixes #25316.
* Merge pull request #26089 from ianb96/word_wrap_cutoff_fixRémi Verschelde2019-02-201-17/+36
|\ | | | | Fix word wrap cutoff and tab wrapping issue
| * Fix word wrap cutoff and tab wrapping issueianb962019-02-201-17/+36
| |
* | Merge pull request #26049 from vixelz/textureprogress-nineslice-fill-fixRémi Verschelde2019-02-201-0/+5
|\ \ | |/ |/| Truncate first segment in TextureProgress 9slices
| * Truncate first segment in TextureProgress 9slicesVixelz2019-02-191-0/+5
| | | | | | | | | | | | | | 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.
* | Allow moving LineEdit visible window left by more than one symbol.Kārlis Seņko2019-02-191-3/+1
|/
* Merge pull request #25953 from nekomatata/fix-radial-texture-progressRémi Verschelde2019-02-161-4/+8
|\ | | | | Fixed TextureProgress in Radial Mode when using center offset
| * Fixed radial progress with center offset by taking distance to edge into ↵PouleyKetchoupp2019-02-161-4/+8
| | | | | | | | account in uv calculation
* | Fix copy text when TextEdit is readonlyqarmin2019-02-161-4/+1
|/
* Revert "Fix MenuButton item label disappearing when setting shortcut."Rémi Verschelde2019-02-151-3/+2
|
* Fix MenuButton item label disappearing when setting shortcut.Unknown2019-02-141-2/+3
|
* Merge pull request #25422 from azagaya/optionbuttonRémi Verschelde2019-02-132-0/+8
|\ | | | | Fix docs about item_selected and item_focused . Fixes #25273
| * Fixes differences between docs and item_selected and item_focused signals in ↵azagaya2019-02-112-0/+8
| | | | | | | | | | | | 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.
* | Fix button alignment of Package Installer on OSXNaoto Kondo2019-02-131-31/+4
| | | | | | This problem occurs only in the HiDPI environment.
* | Fix typos with codespellRémi Verschelde2019-02-132-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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 ```
* | Scene: Ensure classes match their header filenameRémi Verschelde2019-02-123-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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`
* | General cleanup of script and doc search barsMichael Alexsander Silva Dias2019-02-101-1/+1
| |
* | Fixed selection being activated when using scroll linesPaulb232019-02-041-11/+13
| |
* | Small fixup on button toggle behaviour in ColorPickerMichael Alexsander Silva Dias2019-01-281-17/+8
|/
* Make some small enhancements to the ColorPickerMichael Alexsander Silva Dias2019-01-271-33/+53
|
* Updates containers minimum size when some constants are modifiedgroud2019-01-246-92/+118
|
* ProgressBar: Set default step to 0.01Rémi Verschelde2019-01-241-0/+1
| | | | Fixes #22655.
* Merge pull request #25190 from 99alfie/masterRémi Verschelde2019-01-231-6/+6
|\ | | | | Fix ButtonGroup.get_pressed_button bug
| * ButtonGroup.get_pressed_button bugfix, fixes issue #25057Kraus2019-01-211-6/+6
| |
* | Merge pull request #25064 from homer666/itemlist-adjust-ui_select-precedenceRémi Verschelde2019-01-211-2/+2
|\ \ | | | | | | ItemList: ignore `ui_select` action if Select Mode is not "Multi"
| * | ItemList: ignore `ui_select` action if Select Mode is not "Multi"homer6662019-01-181-2/+2
| | |
* | | Fix a rounding error in ColorPickerHugo Locurcio2019-01-181-2/+3
| |/ |/| | | | | This closes #25063.
* | Appease some CppCheck warns for files in the "scene" directoryMichael Alexsander Silva Dias2019-01-163-5/+1
|/
* Update rect size on selectvolzhs2019-01-161-2/+1
|
* Defer activated signal after tree has been traversed.Juan Linietsky2019-01-142-1/+17
|
* Hide visible popups by default if visible when entering tree, unless on ↵Juan Linietsky2019-01-141-1/+5
| | | | editor. Fixes #24737
* Update IME text only for focused input controls.bruvzg2019-01-082-7/+13
|
* Fix jumping when scrolling down fast with smooth scroll enabledTimo Schwarzer2019-01-061-1/+0
| | | | Fixes #24773
* Fix text edit wrapping beyond control size, issue 23896Paulb232019-01-052-4/+6
|
* Merge pull request #24738 from timoschwarzer/24725-fit-child-in-rect-null-checkRémi Verschelde2019-01-041-0/+1
|\ | | | | Check if p_child is not null in Container.fit_child_rect()
| * Check if p_child is not null in Container.fit_child_rect()Timo Schwarzer2019-01-031-0/+1
| | | | | | | | Fixes #24725