diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2018-09-04 18:18:13 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2018-09-04 18:18:13 +0200 |
commit | b2fe70f34ddcec7550630efd5cd9f8ed9c7bada8 (patch) | |
tree | 8bb3a861dd93f3e7052d6d12d6a0b98528c7399d /src/page.vala | |
parent | 92a79aacbf96307f4d31f0034f5058415cc34c5c (diff) | |
parent | feffc9fa14d9edbd4cd924de55020c311607a8ff (diff) |
Update upstream source from tag 'upstream/3.30.0'
Update to upstream version '3.30.0'
with Debian dir b4810f15e03280de0ce8db7bb4647da6a4db4948
Diffstat (limited to 'src/page.vala')
-rw-r--r-- | src/page.vala | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/page.vala b/src/page.vala index 582aef8..13de4d2 100644 --- a/src/page.vala +++ b/src/page.vala @@ -86,7 +86,7 @@ public class Page public bool is_color { get { return n_channels > 1; } } /* Rotation of scanned data */ - private ScanDirection scan_direction_; + private ScanDirection scan_direction_ = ScanDirection.TOP_TO_BOTTOM; public ScanDirection scan_direction { get { return scan_direction_; } @@ -142,8 +142,6 @@ public class Page if (has_crop) crop_changed (); } - - default = ScanDirection.TOP_TO_BOTTOM; } /* True if the page has a crop set */ @@ -401,6 +399,10 @@ public class Page double w, h; switch (name) { + case "A3": + w = 11.7; + h = 16.5; + break; case "A4": w = 8.3; h = 11.7; |