]> www.fi.muni.cz Git - evince.git/blobdiff - backend/ev-document-thumbnails.c
Really make use of the orientation bit of the render context. Use the
[evince.git] / backend / ev-document-thumbnails.c
index 260d623864edd7bbaa481ea5c8e4190855bd7761..9bf1695e24d31f0ffb4557f7e549388c5c808f17 100644 (file)
@@ -47,6 +47,7 @@ ev_document_thumbnails_get_type (void)
 GdkPixbuf *
 ev_document_thumbnails_get_thumbnail (EvDocumentThumbnails   *document,
                                      gint                    page,
+                                     EvOrientation           orientation,
                                      gint                    size,
                                      gboolean                border)
 {
@@ -55,7 +56,8 @@ ev_document_thumbnails_get_thumbnail (EvDocumentThumbnails   *document,
        g_return_val_if_fail (EV_IS_DOCUMENT_THUMBNAILS (document), NULL);
 
        iface = EV_DOCUMENT_THUMBNAILS_GET_IFACE (document);
-       return iface->get_thumbnail (document, page, size, border);
+
+       return iface->get_thumbnail (document, page, orientation, size, border);
 }
 
 void