Double click thumb to open

This commit is contained in:
Bert 2011-02-19 23:07:10 +01:00
parent 26bb005458
commit a345c963f8
1 changed files with 9 additions and 4 deletions

13
main.c
View File

@ -501,10 +501,15 @@ void on_buttonpress(XButtonEvent *bev) {
switch (bev->button) {
case Button1:
if ((sel = tns_translate(&tns, bev->x, bev->y)) >= 0) {
fileidx = sel;
load_image();
mode = MODE_NORMAL;
win_set_cursor(&win, CURSOR_ARROW);
if (sel == fileidx) {
load_image();
mode = MODE_NORMAL;
win_set_cursor(&win, CURSOR_ARROW);
} else {
tns_highlight(&tns, &win, fileidx, False);
tns_highlight(&tns, &win, sel, True);
fileidx = sel;
}
changed = 1;
break;
}