mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2024-11-19 19:54:47 +00:00
mousewheel now works in dialog lists
This commit is contained in:
parent
2d1cff6549
commit
303d173bf6
10
dialogs.cpp
10
dialogs.cpp
@ -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++)
|
||||
|
Loading…
Reference in New Issue
Block a user