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
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1579775

Title:
  Refresh keyboard shortcuts not working in Unity 8

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1579775/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to