summaryrefslogtreecommitdiff
path: root/src/page.vala
diff options
context:
space:
mode:
Diffstat (limited to 'src/page.vala')
-rw-r--r--src/page.vala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/page.vala b/src/page.vala
index c6b532e..62af773 100644
--- a/src/page.vala
+++ b/src/page.vala
@@ -216,8 +216,8 @@ public class Page : Object
this.crop_name = crop_name;
this.crop_x = crop_x;
this.crop_y = crop_y;
- this.crop_width = crop_width;
- this.crop_height = crop_height;
+ this.crop_width = (crop_x + crop_width > scan_width) ? scan_width : crop_width;
+ this.crop_height = (crop_y + crop_height > scan_height) ? scan_height : crop_height;
}
public void set_page_info (ScanPageInfo info)