godot/scene/gui
Rémi Verschelde 966c68badd Range: Remove min/max check added in #33908
This wasn't a very good idea as it puts too strict requirements on how
to set `min` and `max` values. For example, since the default min and
max are 0 and 100, this triggers an error:

```
set_min(256)
set_max(16384)
```

Since `min` will be higher than `max` temporarily. It can be worked
around by setting max first, but it's not really intuitive. I'll relax
the requirement as it's only a problem in `get_as_ratio`, which already
has a check.

Fix another min == max occurrence.
2019-11-26 12:11:21 +01:00
..
base_button.cpp Changed some code showed in LGTM and Coverage 2019-07-20 08:09:57 +02:00
base_button.h Remove redundant author doc comments 2019-08-12 04:26:38 -05:00
box_container.cpp Some code changed with Clang-Tidy 2019-06-26 15:08:25 +02:00
box_container.h
button.cpp Fixed crash when using icon override in button 2019-11-09 23:06:46 +01:00
button.h Add feature to Button to make its icon expand/shrink with the button's size 2019-08-29 11:25:00 -03:00
center_container.cpp
center_container.h
check_box.cpp Implemented check_vadjust in CheckBox & CheckButton. It was exposed to the editor, but wasn't used. 2019-08-06 13:27:07 -04:00
check_box.h
check_button.cpp Implemented check_vadjust in CheckBox & CheckButton. It was exposed to the editor, but wasn't used. 2019-08-06 13:27:07 -04:00
check_button.h
color_picker.cpp Remove dependency on the editor directory being in the build's include path. 2019-10-10 08:57:00 +02:00
color_picker.h Increase color preset slots 2019-07-30 12:03:00 +01:00
color_rect.cpp
color_rect.h Made use of semicolons more consitent, fixed formatting 2019-06-19 15:24:31 +02:00
container.cpp Improve the node configuration warning display 2019-07-09 00:18:00 +02:00
container.h
control.cpp Fixed crashes when renaming a state in AnimationNodeStateMachineEditor 2019-10-22 16:28:11 +02:00
control.h Remove redundant author doc comments 2019-08-12 04:26:38 -05:00
dialogs.cpp Fix WindowDialog moving when resized from the left/top edge 2019-11-24 23:39:55 -06:00
dialogs.h Make the editor dimming smarter 2019-10-31 16:58:53 -03:00
file_dialog.cpp Merge pull request #33091 from MCrafterzz/fix10567 2019-10-29 13:27:41 +01:00
file_dialog.h Improved UX of selecting directories in (Editor)FileDialog by hiding unused gui elements and moving the drive selection 2019-10-29 11:36:09 +01:00
gradient_edit.cpp GradientEdit: Fix index crashes 2019-11-19 22:05:37 +01:00
gradient_edit.h Cleanup some unecessary editor/ includes in scene/ 2019-06-12 22:48:43 +02:00
graph_edit.cpp Make holding Ctrl toggle snapping in GraphEdit 2019-11-15 19:34:44 +01:00
graph_edit.h
graph_node.cpp Fix resizer icon visiblity on light theme in GraphNode 2019-09-01 09:12:26 +03:00
graph_node.h
grid_container.cpp Merge pull request #32411 from YeldhamDev/fix_grid_overflow 2019-10-08 17:05:32 +02:00
grid_container.h
item_list.cpp Range: Fix cases where max was set to or below min value 2019-11-26 10:25:41 +01:00
item_list.h
label.cpp Fixed cases where labels with autowrap can overflow the editor ui 2019-11-04 10:12:36 +01:00
label.h Remove redundant author doc comments 2019-08-12 04:26:38 -05:00
line_edit.cpp Make LineEdit's minimal size adapt to its icons 2019-09-25 00:46:29 -03:00
line_edit.h Merge pull request #32048 from YeldhamDev/lineedit_right_icon_fix 2019-09-23 09:51:45 +02:00
link_button.cpp
link_button.h
margin_container.cpp
margin_container.h
menu_button.cpp
menu_button.h Remove redundant author doc comments 2019-08-12 04:26:38 -05:00
nine_patch_rect.cpp
nine_patch_rect.h Remove redundant author doc comments 2019-08-12 04:26:38 -05:00
option_button.cpp Fixes OptionButton Not Updating if Current Selection Already Selected 2019-09-05 22:17:48 -07:00
option_button.h Remove redundant author doc comments 2019-08-12 04:26:38 -05:00
panel.cpp
panel.h Remove redundant author doc comments 2019-08-12 04:26:38 -05:00
panel_container.cpp
panel_container.h
popup.cpp Merge pull request #31267 from sparkart/fix_optionbutton_offset 2019-08-14 11:43:42 +02:00
popup.h Remove redundant author doc comments 2019-08-12 04:26:38 -05:00
popup_menu.cpp PopupMenu: Fix missing text/xl_text when using add_shortcut 2019-10-08 09:33:26 +02:00
popup_menu.h PopupMenu: Reorder add_* methods in more natural order 2019-10-08 09:32:01 +02:00
progress_bar.cpp Fix ProgressBar Wrong Value with Border 2019-07-30 21:47:11 -07:00
progress_bar.h
range.cpp Range: Remove min/max check added in #33908 2019-11-26 12:11:21 +01:00
range.h Remove redundant author doc comments 2019-08-12 04:26:38 -05:00
reference_rect.cpp Fix ReferenceRect node 2019-06-28 12:42:42 +03:00
reference_rect.h Fix ReferenceRect node 2019-06-28 12:42:42 +03:00
rich_text_effect.cpp doc: Sync classref with current source 2019-09-27 22:16:42 +02:00
rich_text_effect.h Implement #32347 - RichTextLabel's Item and Item* structs should not inherit Object, it's too expensive 2019-09-26 01:26:02 +02:00
rich_text_label.cpp Merge pull request #32870 from bergmannf/27850_rtl_bold_italic 2019-10-25 23:17:59 +02:00
rich_text_label.h Merge pull request #32870 from bergmannf/27850_rtl_bold_italic 2019-10-25 23:17:59 +02:00
scroll_bar.cpp Fix always true/false values 2019-06-20 16:59:48 +02:00
scroll_bar.h Remove redundant author doc comments 2019-08-12 04:26:38 -05:00
scroll_container.cpp Range: Fix cases where max was set to or below min value 2019-11-26 10:25:41 +01:00
scroll_container.h
SCsub
separator.cpp
separator.h Remove redundant author doc comments 2019-08-12 04:26:38 -05:00
shortcut.cpp
shortcut.h
slider.cpp Fix analog input in sliders 2019-11-07 16:39:14 +01:00
slider.h
spin_box.cpp Fixes spinbox not releasing focus on value change 2019-10-21 16:42:17 -07:00
spin_box.h Use reference to constant in functions 2019-07-10 11:54:12 +02:00
split_container.cpp
split_container.h Made use of semicolons more consitent, fixed formatting 2019-06-19 15:24:31 +02:00
tab_container.cpp Fix various problems with tab-related icons 2019-09-22 23:08:14 -03:00
tab_container.h Fix various problems with tab-related icons 2019-09-22 23:08:14 -03:00
tabs.cpp FIX: Tabs text translation 2019-09-30 13:56:20 +04:00
tabs.h FIX: Tabs text translation 2019-09-30 13:56:20 +04:00
text_edit.cpp Range: Fix cases where max was set to or below min value 2019-11-26 10:25:41 +01:00
text_edit.h Improved TextEdit search usability & documentation 2019-10-31 12:35:23 +01:00
texture_button.cpp Add feature to Button to make its icon expand/shrink with the button's size 2019-08-29 11:25:00 -03:00
texture_button.h
texture_progress.cpp Make TextureProgress's nine_patch_stretch property to enable stretching for radial fills. 2019-09-30 20:58:29 +02:00
texture_progress.h
texture_rect.cpp Update TextureRect and Sprite when their Texture is modified directly. 2019-10-05 17:32:46 +02:00
texture_rect.h Update TextureRect and Sprite when their Texture is modified directly. 2019-10-05 17:32:46 +02:00
tool_button.cpp
tool_button.h
tree.cpp Fixed crash when pressing down key on empty Tree 2019-11-12 08:15:29 +01:00
tree.h Fix some overflows and unitialized variables 2019-11-20 16:22:16 +01:00
video_player.cpp Refactor VideoPlayer and VideoStream 2019-10-24 01:35:47 +01:00
video_player.h Refactor VideoPlayer and VideoStream 2019-10-24 01:35:47 +01:00
viewport_container.cpp process unhandled input in ViewportContainer 2019-08-31 14:51:16 +02:00
viewport_container.h