summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRay Strode <rstrode@redhat.com>2008-05-30 14:30:11 -0400
committerRay Strode <rstrode@redhat.com>2008-05-30 14:30:11 -0400
commit1c3a90801efcc6c919c76962f4246790450c1c62 (patch)
tree232a90b16059d31f64a2cd79bc351a2bf677085a
parentc4e9d540fa46cc8408628ae51ffa747c6f143043 (diff)
downloadplymouth-1c3a90801efcc6c919c76962f4246790450c1c62.tar.gz
plymouth-1c3a90801efcc6c919c76962f4246790450c1c62.tar.xz
plymouth-1c3a90801efcc6c919c76962f4246790450c1c62.zip
Fix one more place in spinifinity that wasn't honoring configured color0.1.0
-rw-r--r--src/splash-plugins/spinfinity/plugin.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/splash-plugins/spinfinity/plugin.c b/src/splash-plugins/spinfinity/plugin.c
index c02a0ef..24298e7 100644
--- a/src/splash-plugins/spinfinity/plugin.c
+++ b/src/splash-plugins/spinfinity/plugin.c
@@ -449,8 +449,8 @@ show_password_entry (ply_boot_splash_plugin_t *plugin)
plugin->lock_area.x = area.width / 2.0 - (plugin->lock_area.width + entry_width) / 2.0;
plugin->lock_area.y = area.height / 2.0 - plugin->lock_area.height / 2.0;
- ply_frame_buffer_fill_with_color (plugin->frame_buffer, NULL,
- 0.0, 0.43, .71, 1.0);
+ ply_frame_buffer_fill_with_hex_color (plugin->frame_buffer, &plugin->lock_area,
+ PLYMOUTH_BACKGROUND_COLOR);
draw_password_entry (plugin);
}