Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-04-05 | Merge pull request #26914 from xDGameStudios/popup_menu_add_item | Rémi Verschelde | |
Fixed optional idx argument in add_item (PopupMenu) | |||
2019-04-05 | Fix -Wimplicit-fallthrough warnings from GCC 8 | Rémi Verschelde | |
Adds `FALLTHROUGH` macro to specify when a fallthrough is intentional. Can be replaced by `[[fallthrough]]` if/when we switch to C++17. The warning is now enabled by default for GCC on `extra` warnings level (part of GCC's `-Wextra`). It's not enabled in Clang's `-Wextra` yet, but we could enable it manually once we switch to C++11. There's no equivalent feature in MSVC for now. Fixes #26135. | |||
2019-04-04 | Merge pull request #27567 from Calinou/selection-boxes-use-accent-color | Rémi Verschelde | |
Use the editor theme's accent color for 2D/3D selections and rotations | |||
2019-04-04 | Merge pull request #27596 from mo7sener/master | Rémi Verschelde | |
Fix: RichTextLabel Crash - meta_hover_ended | |||
2019-04-02 | Fix -Wnon-virtual-dtor warnings. | marxin | |
Example of the warning: ./core/script_language.h:198:7: warning: 'class ScriptCodeCompletionCache' has virtual functions and accessible non-virtual destructor [-Wnon-virtual-dtor] | |||
2019-04-02 | Fixed an issue where changing the default_cursor on the RichTextLabel's ↵ | Robear Selwans | |
meta_hover_ended caused the entire project to crash | |||
2019-03-31 | Use the editor theme's accent color for 2D/3D selections and rotations | Hugo Locurcio | |
2019-03-31 | Fixed not deselecting when clearing lineedit. | Paulb23 | |
2019-03-27 | Merge pull request #27088 from fire/scaling_texture_button_focus | Rémi Verschelde | |
Fix scaling issue for texture button focus texture. | |||
2019-03-27 | Merge pull request #27017 from qarmin/fix_inspector_update | Rémi Verschelde | |
Fix inspector update after changing anchor from buttons | |||
2019-03-19 | Fix inspector update after changing anchor via buttons | qarmin | |
2019-03-16 | Merge pull request #26788 from mo7sener/master | Rémi Verschelde | |
RichTextLabel: Adding the ability to change the default cursor | |||
2019-03-15 | Fix scaling issue for texture button focus texture. | K. S. Ernest (iFire) Lee | |
2019-03-11 | Fixed optional idx argument in add_item (OptionMeny & PopupMenu) | xDGameStudios | |
2019-03-10 | Fix cursor going to start while editing GraphNode's title | Bojidar Marinov | |
Fixes #26816 | |||
2019-03-08 | Added the ability to change the default cursor property for the ↵ | Robear Selwans | |
RichTextLabel component. | |||
2019-03-07 | Merge pull request #21534 from volzhs/fix-scrollcontainer-size | Rémi Verschelde | |
Precise size calculation of ScrollContainer | |||
2019-03-06 | -Make tileset and meshlibrary edit in a separate inspector, fixes #26671 | Juan 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-05 | Merge pull request #26642 from DrMoriarty/check_cursor_line | Rémi Verschelde | |
Check cursor line and column | |||
2019-03-05 | Check cursor line and column | Vasiliy Makarov | |
Added a trivial check if cursor.line and cursor.column are valid. Fix #26245 | |||
2019-03-05 | Fix general issues with filesystem-related UI components in the editor | Michael Alexsander Silva Dias | |
2019-03-03 | Add a warning when using plain Container, as many users seem to ↵ | Juan Linietsky | |
misunderstand what this is. | |||
2019-03-01 | Fixed some crashers, closes #26393 | Juan Linietsky | |
2019-03-01 | Merge pull request #26140 from karliss/meta-item | Rémi Verschelde | |
Use correct meta item in rich text. | |||
2019-03-01 | Fixed wrong method binding in control | Justin Vesper | |
Control.get_parent_area_size() is now bound to Control::get_parent_area_size() instead of Control::get_size() | |||
2019-02-27 | Fix minimum size of ProgressBar-s | Bojidar Marinov | |
Was a leftover from 0a1c1c660fc6aa0689816e85f2b6791c225c6d63. Fixes #21633. | |||
2019-02-25 | Update 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-22 | Make 'SplitContainer' update drawing only if actually needs to | Michael Alexsander Silva Dias | |
2019-02-21 | Fix 'SplitContainer's showing their handles when they shouldn't | Michael Alexsander Silva Dias | |
Fixes #25735. | |||
2019-02-22 | Use correct meta item in rich text. | Kārlis Seņko | |
Prevent incorrect static cast and unnecesarry meta_hover_ended/started events. | |||
2019-02-21 | Merge pull request #26105 from nekomatata/texture-button-mask-fix | Rémi Verschelde | |
TextureButton with click mask only can be clicked | |||
2019-02-21 | Fixed TextureButton click mask when no other texture is set | PouleyKetchoupp | |
2019-02-20 | Add -Wshadow=local to warnings and fix reported issues. | marxin | |
Fixes #25316. | |||
2019-02-20 | Merge pull request #26089 from ianb96/word_wrap_cutoff_fix | Rémi Verschelde | |
Fix word wrap cutoff and tab wrapping issue | |||
2019-02-20 | Merge pull request #26049 from vixelz/textureprogress-nineslice-fill-fix | Rémi Verschelde | |
Truncate first segment in TextureProgress 9slices | |||
2019-02-20 | Fix word wrap cutoff and tab wrapping issue | ianb96 | |
2019-02-19 | Allow moving LineEdit visible window left by more than one symbol. | Kārlis Seņko | |
2019-02-19 | Truncate first segment in TextureProgress 9slices | Vixelz | |
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-16 | Merge pull request #25953 from nekomatata/fix-radial-texture-progress | Rémi Verschelde | |
Fixed TextureProgress in Radial Mode when using center offset | |||
2019-02-16 | Fixed radial progress with center offset by taking distance to edge into ↵ | PouleyKetchoupp | |
account in uv calculation | |||
2019-02-16 | Fix copy text when TextEdit is readonly | qarmin | |
2019-02-15 | Revert "Fix MenuButton item label disappearing when setting shortcut." | Rémi Verschelde | |
2019-02-14 | Fix MenuButton item label disappearing when setting shortcut. | Unknown | |
2019-02-13 | Merge pull request #25422 from azagaya/optionbutton | Rémi Verschelde | |
Fix docs about item_selected and item_focused . Fixes #25273 | |||
2019-02-13 | Fix button alignment of Package Installer on OSX | Naoto Kondo | |
This problem occurs only in the HiDPI environment. | |||
2019-02-13 | Fix typos with codespell | Ré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-12 | Scene: Ensure classes match their header filename | Ré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-11 | Fixes 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-10 | General cleanup of script and doc search bars | Michael Alexsander Silva Dias | |
2019-02-04 | Fixed selection being activated when using scroll lines | Paulb23 | |