Tweak minsize of editor ColorPickerButtons
This commit is contained in:
@@ -6949,6 +6949,10 @@ void Node3DEditor::_update_theme() {
|
||||
|
||||
sun_title->add_theme_font_override("font", get_theme_font(SNAME("title_font"), SNAME("Window")));
|
||||
environ_title->add_theme_font_override("font", get_theme_font(SNAME("title_font"), SNAME("Window")));
|
||||
|
||||
sun_color->set_custom_minimum_size(Size2(0, get_theme_constant(SNAME("color_picker_button_height"), SNAME("Editor"))));
|
||||
environ_sky_color->set_custom_minimum_size(Size2(0, get_theme_constant(SNAME("color_picker_button_height"), SNAME("Editor"))));
|
||||
environ_ground_color->set_custom_minimum_size(Size2(0, get_theme_constant(SNAME("color_picker_button_height"), SNAME("Editor"))));
|
||||
}
|
||||
|
||||
void Node3DEditor::_notification(int p_what) {
|
||||
|
||||
@@ -269,6 +269,15 @@ ThemeEditorPreview::ThemeEditorPreview() {
|
||||
picker_overlay->connect("mouse_exited", callable_mp(this, &ThemeEditorPreview::_reset_picker_overlay));
|
||||
}
|
||||
|
||||
void DefaultThemeEditorPreview::_notification(int p_what) {
|
||||
switch (p_what) {
|
||||
case NOTIFICATION_ENTER_TREE:
|
||||
case NOTIFICATION_THEME_CHANGED: {
|
||||
test_color_picker_button->set_custom_minimum_size(Size2(0, get_theme_constant(SNAME("color_picker_button_height"), SNAME("Editor"))));
|
||||
} break;
|
||||
}
|
||||
}
|
||||
|
||||
DefaultThemeEditorPreview::DefaultThemeEditorPreview() {
|
||||
Panel *main_panel = memnew(Panel);
|
||||
preview_content->add_child(main_panel);
|
||||
@@ -343,7 +352,8 @@ DefaultThemeEditorPreview::DefaultThemeEditorPreview() {
|
||||
test_option_button->add_item(TTR("Many"));
|
||||
test_option_button->add_item(TTR("Options"));
|
||||
first_vb->add_child(test_option_button);
|
||||
first_vb->add_child(memnew(ColorPickerButton));
|
||||
test_color_picker_button = memnew(ColorPickerButton);
|
||||
first_vb->add_child(test_color_picker_button);
|
||||
|
||||
VBoxContainer *second_vb = memnew(VBoxContainer);
|
||||
second_vb->set_h_size_flags(SIZE_EXPAND_FILL);
|
||||
|
||||
@@ -38,6 +38,8 @@
|
||||
#include "scene/gui/scroll_container.h"
|
||||
#include "scene/resources/theme.h"
|
||||
|
||||
class ColorPickerButton;
|
||||
|
||||
class ThemeEditorPreview : public VBoxContainer {
|
||||
GDCLASS(ThemeEditorPreview, VBoxContainer);
|
||||
|
||||
@@ -87,6 +89,11 @@ public:
|
||||
class DefaultThemeEditorPreview : public ThemeEditorPreview {
|
||||
GDCLASS(DefaultThemeEditorPreview, ThemeEditorPreview);
|
||||
|
||||
ColorPickerButton *test_color_picker_button = nullptr;
|
||||
|
||||
protected:
|
||||
void _notification(int p_what);
|
||||
|
||||
public:
|
||||
DefaultThemeEditorPreview();
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user