]> git.ipfire.org Git - thirdparty/plymouth.git/commitdiff
splash plugins: Fix wrong group being used for console viewer settings in space-flare...
authornerdopolis <bluescreen_avenger@verizon.net>
Wed, 10 Jan 2024 12:20:02 +0000 (07:20 -0500)
committernerdopolis <bluescreen_avenger@verizon.net>
Wed, 10 Jan 2024 12:20:02 +0000 (07:20 -0500)
src/plugins/splash/fade-throbber/plugin.c
src/plugins/splash/space-flares/plugin.c

index 44729a076f75f2bab59d0401acec8a7ed1ec4410..5e594d63b0abc6ec7e42ef0d129c503873392461 100644 (file)
@@ -248,13 +248,13 @@ create_plugin (ply_key_file_t *key_file)
         plugin->should_show_console_messages = false;
 
         /* Likely only able to set the font if the font is in the initrd */
-        plugin->monospace_font = ply_key_file_get_value (key_file, "two-step", "MonospaceFont");
+        plugin->monospace_font = ply_key_file_get_value (key_file, "fade-throbber", "MonospaceFont");
 
         if (plugin->monospace_font == NULL)
                 plugin->monospace_font = strdup ("monospace 10");
 
         plugin->console_text_color =
-                ply_key_file_get_long (key_file, "two-step",
+                ply_key_file_get_long (key_file, "fade-throbber",
                                        "ConsoleLogTextColor",
                                        PLY_CONSOLE_VIEWER_LOG_TEXT_COLOR);
 
index 9b20063366f8110453cee0dbf9011a6c6ca7cd20..0f55dda0fabf194e1443fd830ec0c30b077367ca 100644 (file)
@@ -627,13 +627,13 @@ create_plugin (ply_key_file_t *key_file)
         plugin->should_show_console_messages = false;
 
         /* Likely only able to set the font if the font is in the initrd */
-        plugin->monospace_font = ply_key_file_get_value (key_file, "two-step", "MonospaceFont");
+        plugin->monospace_font = ply_key_file_get_value (key_file, "space-flares", "MonospaceFont");
 
         if (plugin->monospace_font == NULL)
                 plugin->monospace_font = strdup ("monospace 10");
 
         plugin->console_text_color =
-                ply_key_file_get_long (key_file, "two-step",
+                ply_key_file_get_long (key_file, "space-flares",
                                        "ConsoleLogTextColor",
                                        PLY_CONSOLE_VIEWER_LOG_TEXT_COLOR);