Start keyboard navigation

Now a room can be opened with the keyboard only and be scrolled.
This commit is contained in:
Carl Schwan
2020-11-16 10:38:45 +01:00
parent 76728cb3f9
commit 6abe7cab57
2 changed files with 14 additions and 1 deletions

View File

@@ -39,8 +39,9 @@ Kirigami.ApplicationWindow {
currentRoom = null;
pageStack.removePage(pageStack.lastItem);
}
pageStack.push(roomPage, { 'currentRoom': room, });
var item = pageStack.push(roomPage, { 'currentRoom': room, });
currentRoom = room;
return item;
}
}