aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index a99acd0..51dea22 100644
--- a/src/main.c
+++ b/src/main.c
@@ -231,13 +231,15 @@ void run(struct imagenode *image){
buf = NULL;
redraw = 1;
break;
+ case XK_Return:
+ printf("%s\n", image->filename);
+ break;
}
break;
}
}
if(redraw){
while(!buf){
- printf("loading %s\n", image->filename);
buf = loadbuf(image->filename, &bufwidth, &bufheight);
if(!buf){
if(image->next == image){
@@ -277,7 +279,6 @@ void run(struct imagenode *image){
img = create_image_from_buffer(buf, imagewidth, imageheight, bufwidth, bufheight);
assert(img);
}
- printf("Displaying\n");
XFillRectangle(display, window, gc, 0, 0, fillw, fillh);
XPutImage(display, window, gc, img, 0, 0, xoffset, yoffset, width, height);
XFillRectangle(display, window, gc, width - fillw, height - fillh, fillw, fillh);