From 66bf171eae3b3da8af83dfc332492ddda1696b51 Mon Sep 17 00:00:00 2001 From: Sebastien Date: Fri, 31 Jul 2020 14:45:46 +0000 Subject: [PATCH] Use the correct key name for title and subtitle The '_' was removed in the conversion to use gettext --- src/plugins/splash/two-step/plugin.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/splash/two-step/plugin.c b/src/plugins/splash/two-step/plugin.c index 2899b225..32b4bcf6 100644 --- a/src/plugins/splash/two-step/plugin.c +++ b/src/plugins/splash/two-step/plugin.c @@ -1009,8 +1009,8 @@ load_mode_settings (ply_boot_splash_plugin_t *plugin, if (settings->use_firmware_background) plugin->use_firmware_background = true; - settings->title = ply_key_file_get_value (key_file, group_name, "_Title"); - settings->subtitle = ply_key_file_get_value (key_file, group_name, "_SubTitle"); + settings->title = ply_key_file_get_value (key_file, group_name, "Title"); + settings->subtitle = ply_key_file_get_value (key_file, group_name, "SubTitle"); } static ply_boot_splash_plugin_t *