feat: merge GTK3 Theme into Appearance (new Advanced section); fix+scale chat bg image + use FileChooserNative picker

This commit is contained in:
2026-03-08 10:10:59 -06:00
parent f2354a7fa2
commit b47c45d4cc
4 changed files with 203 additions and 33 deletions

View File

@@ -689,12 +689,15 @@ settings_apply_from_file (const char *theme_root, const char *css_dir)
for (i = 0; keys && i < n_keys; i++)
{
char *raw_value;
char *value;
raw_value = g_key_file_get_value (keyfile, "Settings", keys[i], NULL);
if (!raw_value)
continue;
settings_apply_property (settings, keys[i], raw_value);
value = g_strstrip (raw_value);
if (value[0] != '\0')
settings_apply_property (settings, keys[i], value);
g_free (raw_value);
}