We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a9b13d5 commit 68eb83dCopy full SHA for 68eb83d
1 file changed
game/ui/gamemenu.cpp
@@ -50,11 +50,9 @@ struct GameMenu::ListContentDialog : Dialog {
50
}
51
if(e.key==Event::K_W || e.key==Event::K_Up) {
52
onMove(-1);
53
- update();
54
55
if(e.key==Event::K_S || e.key==Event::K_Down) {
56
onMove(+1);
57
58
59
60
@@ -141,11 +139,9 @@ struct GameMenu::ListViewDialog : Dialog {
141
139
142
140
143
144
145
146
147
148
149
150
151
@@ -163,6 +159,7 @@ struct GameMenu::ListViewDialog : Dialog {
163
159
if(list.value+1<int(num))
164
160
list.value++;
165
161
162
+ update();
166
167
168
void paintEvent (PaintEvent&) override {}
0 commit comments