From b44c5ba2f8968d05ea68259212e471f9928d49a9 Mon Sep 17 00:00:00 2001 From: Jeremy Wootten Date: Sun, 8 Sep 2024 13:25:16 +0100 Subject: [PATCH] Fix merge --- src/Widgets/SettingsPopover.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Widgets/SettingsPopover.vala b/src/Widgets/SettingsPopover.vala index f9f100a894..a370d8d372 100644 --- a/src/Widgets/SettingsPopover.vala +++ b/src/Widgets/SettingsPopover.vala @@ -202,7 +202,7 @@ public sealed class Terminal.SettingsPopover : Gtk.Popover { var foreground = theme_palette[Themes.PALETTE_SIZE - 2].to_string (); try { - css_provider.load_from_data (STYLE_CSS.printf (theme, background, foreground)); + css_provider.load_from_string (STYLE_CSS.printf (theme, background, foreground)); } catch (Error e) { critical ("Unable to style color button: %s", e.message); }