mirror of
https://git.pwmt.org/pwmt/zathura.git
synced 2025-01-01 11:06:00 +01:00
Fix color for 'Loading ...'
Signed-off-by: Sebastian Ramacher <sebastian+dev@ramacher.at>
This commit is contained in:
parent
5907300535
commit
099246f91f
1 changed files with 7 additions and 7 deletions
|
@ -512,7 +512,7 @@ zathura_page_widget_draw(GtkWidget* widget, cairo_t* cairo)
|
||||||
cairo_set_source_rgb(cairo, color.red, color.green, color.blue);
|
cairo_set_source_rgb(cairo, color.red, color.green, color.blue);
|
||||||
} else {
|
} else {
|
||||||
const GdkRGBA color = priv->zathura->ui.colors.render_loading_fg;
|
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...");
|
const char* text = _("Loading...");
|
||||||
|
|
Loading…
Reference in a new issue