Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--shell/ev-view.c4
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index c657cf9..38d40cf 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-08-07 Nickolay V. Shmyrev <nshmyrev@yandex.ru>
+
+ * shell/ev-view.c: (get_page_extents): reverse rotation/scale
+ when getting max_page_width, fix drawing in dual mode.
+
Sun Aug 7 02:06:08 2005 Jonathan Blandford <jrb@redhat.com>
* shell/ev-view.c (ev_view_select_all): reverse rotation/page when
diff --git a/shell/ev-view.c b/shell/ev-view.c
index 9c01ca6..fe07f1d 100644
--- a/shell/ev-view.c
+++ b/shell/ev-view.c
@@ -813,8 +813,8 @@ get_page_extents (EvView *view,
gint max_width;
gint x, y;
- ev_page_cache_get_max_width (view->page_cache, view->scale,
- view->rotation, &max_width);
+ ev_page_cache_get_max_width (view->page_cache, view->rotation,
+ view->scale, &max_width);
max_width = max_width + border->left + border->right;
/* Get the location of the bounding box */
if (view->dual_page) {