diff options
Diffstat (limited to 'src/gui/gui.cpp')
-rw-r--r-- | src/gui/gui.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gui/gui.cpp b/src/gui/gui.cpp index b69db97a..c5568a74 100644 --- a/src/gui/gui.cpp +++ b/src/gui/gui.cpp @@ -540,7 +540,12 @@ int tmw_button_proc(int msg, DIALOG *d, int c) { alfont_text_mode(rtm); ret = D_O_K; } else { - ret = d_button_proc(msg,d,c); + /*if(msg==MSG_CLICK) { + if(d->d1==1)((int)d->dp2) + 1; + else if(d->d1==2)((int)d->dp2) - 1; + }*/ + + ret = d_button_proc(msg,d,c); } return ret; } |