diff options
| author | Ray Strode <rstrode@redhat.com> | 2008-05-30 10:39:46 -0400 |
|---|---|---|
| committer | Ray Strode <rstrode@redhat.com> | 2008-05-30 10:39:46 -0400 |
| commit | 2efc4cd81a6490d1a34c8c4338ee465ed2b5cd2a (patch) | |
| tree | 97fb2a1c417656be4f22d5df9066b1e1e7bdc968 /src | |
| parent | d3c7fbe880db0cb259da29a886191038eb210d92 (diff) | |
| download | plymouth-2efc4cd81a6490d1a34c8c4338ee465ed2b5cd2a.tar.gz plymouth-2efc4cd81a6490d1a34c8c4338ee465ed2b5cd2a.tar.xz plymouth-2efc4cd81a6490d1a34c8c4338ee465ed2b5cd2a.zip | |
Fix up throbber to use correct color, too
Diffstat (limited to 'src')
| -rw-r--r-- | src/splash-plugins/spinfinity/throbber.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/splash-plugins/spinfinity/throbber.c b/src/splash-plugins/spinfinity/throbber.c index 1711a3b..d5a8e90 100644 --- a/src/splash-plugins/spinfinity/throbber.c +++ b/src/splash-plugins/spinfinity/throbber.c @@ -141,8 +141,8 @@ animate_at_time (throbber_t *throbber, ply_frame_buffer_pause_updates (throbber->frame_buffer); if (throbber->frame_area.width > 0) - ply_frame_buffer_fill_with_color (throbber->frame_buffer, &throbber->frame_area, - 0.0, 0.43, .71, 1.0); + ply_frame_buffer_fill_with_hex_color (throbber->frame_buffer, &throbber->frame_area, + PLYMOUTH_BACKGROUND_COLOR); frames = (ply_image_t * const *) ply_array_get_elements (throbber->frames); @@ -298,8 +298,8 @@ void throbber_stop (throbber_t *throbber) { if (throbber->frame_area.width > 0) - ply_frame_buffer_fill_with_color (throbber->frame_buffer, &throbber->frame_area, - 0.0, 0.43, .71, 1.0); + ply_frame_buffer_fill_with_hex_color (throbber->frame_buffer, &throbber->frame_area, + PLYMOUTH_BACKGROUND_COLOR); throbber->frame_buffer = NULL; throbber->window = NULL; |
