mousewheel now works in dialog lists

This commit is contained in:
Zeno Rogue 2022-10-27 12:51:15 +02:00
parent 2d1cff6549
commit 303d173bf6
1 changed files with 10 additions and 0 deletions

View File

@ -848,6 +848,16 @@ EX namespace dialog {
return;
}
}
if(sym == PSEUDOKEY_WHEELUP && list_actual_size) {
sym = 0;
list_skip -= 30;
highlight_text = "//missing";
}
if(sym == PSEUDOKEY_WHEELDOWN && list_actual_size) {
sym = 0;
list_skip += 30;
highlight_text = "//missing";
}
if(DKEY == SDLK_PAGEDOWN) {
uni = sym = 0;
for(int i=0; i<isize(items); i++)