Update target Godot version: 3.3.2-stable -> 3.4.4-stable

This commit is contained in:
Leroy Hopson 2022-05-22 11:37:22 +07:00
parent 1659591d15
commit bb74585c20
No known key found for this signature in database
GPG key ID: D2747312A6DB51AA
6 changed files with 18 additions and 16 deletions

View file

@ -8,6 +8,7 @@
#include <ResourceLoader.hpp>
#include <Theme.hpp>
#include <algorithm>
#include <string>
#include <xkbcommon/xkbcommon-keysyms.h>
// For _populate_key_list(), see below.
@ -418,14 +419,12 @@ void Terminal::update_theme() {
Color default_color) -> void {
Color c;
c = has_color(theme_color, "Terminal")
? get_color(theme_color, "Terminal")
: has_color_override(theme_color)
? get_color(theme_color, "")
: (default_theme != nullptr &&
default_theme->has_color(theme_color, "Terminal"))
? default_theme->get_color(theme_color, "Terminal")
: default_color;
c = has_color(theme_color, "Terminal") ? get_color(theme_color, "Terminal")
: has_color_override(theme_color) ? get_color(theme_color, "")
: (default_theme != nullptr &&
default_theme->has_color(theme_color, "Terminal"))
? default_theme->get_color(theme_color, "Terminal")
: default_color;
color_palette[color][0] = c.get_r8();
color_palette[color][1] = c.get_g8();

@ -1 +1 @@
Subproject commit 26d4df4e174124e1174c624d770661b1394fcf5f
Subproject commit f4f6fac4c784da8c973ade0dbc64a9d8400ee247