diff --git a/src/screen.c b/src/screen.c
index 1425796..877e796 100644
a
|
b
|
paint_panel (WPanel * panel) |
1052 | 1052 | paint_dir (panel); |
1053 | 1053 | mini_info_separator (panel); |
1054 | 1054 | display_mini_info (panel); |
| 1055 | widget_move (&panel->widget, (panel->selected - panel->top_file) % llines (panel) + 2, 1); |
1055 | 1056 | panel->dirty = 0; |
1056 | 1057 | } |
1057 | 1058 | |
… |
… |
panel_new_with_dir (const char *panel_name, const char *wpath) |
1330 | 1331 | /* No know sizes of the panel at startup */ |
1331 | 1332 | init_widget (&panel->widget, 0, 0, 0, 0, panel_callback, panel_event); |
1332 | 1333 | |
1333 | | /* We do not want the cursor */ |
1334 | | widget_want_cursor (panel->widget, 0); |
| 1334 | /* We do want the cursor */ |
| 1335 | widget_want_cursor (panel->widget, 1); |
1335 | 1336 | |
1336 | 1337 | if (wpath) |
1337 | 1338 | { |