forked from jeena/FeedTheMonkey
removed html, added keyboard browsing
This commit is contained in:
parent
6968d8ed0e
commit
8b132bf559
5 changed files with 29 additions and 16 deletions
6
main.qml
6
main.qml
|
@ -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 {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue