~fboucault/webbrowser-app/background_open_tabs_adjacent

« back to all changes in this revision

Viewing changes to src/app/webbrowser/Browser.qml

  • Committer: Florian Boucault
  • Date: 2017-02-15 08:11:44 UTC
  • mfrom: (1600.1.8 staging)
  • Revision ID: florian@boucault.net-20170215081144-ynptmq0zgfmrt3fu
Merged staging

Show diffs side-by-side

added added

removed removed

Lines of Context:
1345
1345
 
1346
1346
    // F5 or Ctrl+R: Reload current Tab
1347
1347
    Shortcut {
1348
 
        sequence: StandardKey.Refresh
 
1348
        sequence: "Ctrl+R"
1349
1349
        enabled: contentsContainer.visible
1350
1350
        onActivated: if (currentWebview) currentWebview.reload()
1351
1351
    }