Wire up arrow keys for moving in family list

This commit is contained in:
Kovid Goyal
2024-05-03 09:24:24 +05:30
parent 0864c2728d
commit 2bcd47227c
2 changed files with 41 additions and 0 deletions

View File

@@ -327,6 +327,11 @@ func (self *handler) draw_browsing_screen() {
}
self.lp.MoveCursorHorizontally(mw - l.width)
self.lp.Println(SEPARATOR)
num_rows--
}
for ; num_rows > 0; num_rows-- {
self.lp.MoveCursorHorizontally(mw + 1)
self.lp.Println(SEPARATOR)
}
if self.themes_list != nil && self.themes_list.Len() > 0 {
self.draw_theme_demo()