Fix color for 'Loading ...'

Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
Sebastian Ramacher 2014-05-26 22:06:38 +02:00
parent 5907300535
commit 099246f91f

View file

@ -512,7 +512,7 @@ zathura_page_widget_draw(GtkWidget* widget, cairo_t* cairo)
cairo_set_source_rgb(cairo, color.red, color.green, color.blue);
} else {
const GdkRGBA color = priv->zathura->ui.colors.render_loading_fg;
cairo_set_source_rgb(cairo, color.red/65535.0, color.green/65535.0, color.blue/65535.0);
cairo_set_source_rgb(cairo, color.red, color.green, color.blue);
}
const char* text = _("Loading...");