summaryrefslogtreecommitdiff
path: root/libview/ev-view.c
diff options
context:
space:
mode:
authorCarlos Garcia Campos <[email protected]>2012-12-23 11:28:46 +0100
committerraveit65 <[email protected]>2018-04-05 17:52:41 +0200
commite5c8ce732dc1907f975edd11112a6f0222f70a53 (patch)
treeabddb143ea7aa4645ad92703d59a822dba53b090 /libview/ev-view.c
parent3349fb90d753d735329f2ab8d309093d3adeeabf (diff)
downloadatril-e5c8ce732dc1907f975edd11112a6f0222f70a53.tar.bz2
atril-e5c8ce732dc1907f975edd11112a6f0222f70a53.tar.xz
view: Fix page background rendering while loading
origin commit: https://git.gnome.org/browse/evince/commit/?h=gnome-3-8&id=38528f9
Diffstat (limited to 'libview/ev-view.c')
-rw-r--r--libview/ev-view.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/libview/ev-view.c b/libview/ev-view.c
index 755d4832..a7748b70 100644
--- a/libview/ev-view.c
+++ b/libview/ev-view.c
@@ -105,6 +105,7 @@ typedef struct {
#define SCROLL_TIME 150
#define EV_STYLE_CLASS_DOCUMENT_PAGE "document-page"
+#define EV_STYLE_CLASS_INVERTED "inverted"
/*** Scrolling ***/
static void view_update_range_and_current_page (EvView *view);
@@ -5801,10 +5802,13 @@ draw_one_page (EvView *view,
gtk_style_context_save (context);
gtk_style_context_add_class (context, EV_STYLE_CLASS_DOCUMENT_PAGE);
+ if (ev_document_model_get_inverted_colors (view->model))
+ gtk_style_context_add_class (context, EV_STYLE_CLASS_INVERTED);
if (view->continuous && page == current_page)
gtk_style_context_set_state (context, GTK_STATE_FLAG_ACTIVE);
+ gtk_render_background (context, cr, page_area->x, page_area->y, page_area->width, page_area->height);
gtk_render_frame (context, cr, page_area->x, page_area->y, page_area->width, page_area->height);
gtk_style_context_restore (context);