removed html, added keyboard browsing

This commit is contained in:
Jeena 2015-02-04 19:14:27 +01:00
parent 6968d8ed0e
commit 8b132bf559
5 changed files with 29 additions and 16 deletions

View file

@ -30,6 +30,7 @@ ApplicationWindow {
anchors.fill: parent
orientation: Qt.Horizontal
visible: serverLogin.loggedIn()
focus: true
Sidebar {
id: sidebar
@ -46,6 +47,11 @@ ApplicationWindow {
Layout.minimumWidth: 200
implicitWidth: 624
}
Keys.onRightPressed: sidebar.next()
Keys.onLeftPressed: sidebar.previous()
Keys.onDownPressed: content.scrollDown()
Keys.onUpPressed: content.scrollUp()
}
Login {