summaryrefslogtreecommitdiff
path: root/src/DataImage.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/DataImage.cxx')
-rw-r--r--src/DataImage.cxx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/DataImage.cxx b/src/DataImage.cxx
index f7109cd..680d218 100644
--- a/src/DataImage.cxx
+++ b/src/DataImage.cxx
@@ -55,7 +55,11 @@ DataImage::set_pixel(int x, int y, char r, char g, char b) {
void
DataImage::draw() {
- fl_draw_image(data, 0, 0, w(), h(), d);
+ fl_push_clip(x(), y(), w(), h());
+
+ fl_draw_image(data, x(), y(), w(), h(), d);
+
+ fl_pop_clip();
}
int