Fix transparent editor theme being brighter

This commit is contained in:
nathanwfranke 2020-02-07 21:03:20 -06:00 committed by Nathan Franke
parent a4f70d7e6c
commit 0222f78482
No known key found for this signature in database
GPG key ID: 92164DCCF3B1F723

View file

@ -534,7 +534,9 @@ Ref<Theme> create_editor_theme(const Ref<Theme> p_theme) {
style_tab_disabled->set_border_color(color_disabled);
// Editor background
theme->set_stylebox("Background", "EditorStyles", make_flat_stylebox(background_color, default_margin_size, default_margin_size, default_margin_size, default_margin_size));
Color background_color_opaque = background_color;
background_color_opaque.a = 1.0;
theme->set_stylebox("Background", "EditorStyles", make_flat_stylebox(background_color_opaque, default_margin_size, default_margin_size, default_margin_size, default_margin_size));
// Focus
Ref<StyleBoxFlat> style_focus = style_default->duplicate();