My unity8 desktop session is broken, no app starts, so I can’t observe the issue.
Michael, can you run the following standalone QML example in your unity8 session and let me know whether it works (i.e. something is printed in the window when pressing Ctrl+R or F5)? import QtQuick 2.5 import QtQuick.Window 2.2 Window { width: 400 height: 300 Text { id: label anchors.centerIn: parent onTextChanged: timer.restart() } Timer { id: timer interval: 2000 onTriggered: label.text = "" } Shortcut { sequence: StandardKey.Refresh onActivated: label.text = "Ctrl+R pressed!" } Shortcut { sequence: "F5" onActivated: label.text = "F5 pressed!" } } ** Changed in: webbrowser-app (Ubuntu) Status: New => Incomplete -- You received this bug notification because you are a member of Ubuntu Touch seeded packages, which is subscribed to webbrowser-app in Ubuntu. https://bugs.launchpad.net/bugs/1579775 Title: Refresh keyboard shortcuts not working in Unity 8 Status in webbrowser-app package in Ubuntu: Incomplete Bug description: Neither the F5 nor Ctrl+R keyboard shortcuts for refreshing a page work under a Unity 8 session. They both work under Unity 7. Other shortcuts, such at Ctrl+T and Ctrl+W, work fine under Unity 8. Nothing appears in when pressing F5 or Ctrl+R ~/.cache/upstart /application-legacy-webbrowser-app-.log To manage notifications about this bug go to: https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1579775/+subscriptions -- Mailing list: https://launchpad.net/~touch-packages Post to : touch-packages@lists.launchpad.net Unsubscribe : https://launchpad.net/~touch-packages More help : https://help.launchpad.net/ListHelp