~osomon/webbrowser-app/context-menu-focus

« back to all changes in this revision

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

  • Committer: CI Train Bot
  • Author(s): Olivier Tilloy
  • Date: 2015-11-26 13:42:12 UTC
  • mfrom: (1279.2.2 expanded-historyview-header)
  • Revision ID: ci-train-bot@canonical.com-20151126134212-vw3u52u12hjcklmf
Prevent click events from propagating through the expanded history view to the view below. Fixes: #1518904
Approved by: Ugo Riboni, PS Jenkins bot

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
    signal historyEntryRemoved(url url)
31
31
    signal done()
32
32
 
 
33
    MouseArea {
 
34
        // Prevent click events from propagating through to the view below
 
35
        anchors.fill: parent
 
36
        acceptedButtons: Qt.AllButtons
 
37
    }
 
38
 
33
39
    Rectangle {
34
40
        anchors.fill: parent
35
41
        color: "#f6f6f6"
73
79
 
74
80
    Item {
75
81
        id: header
 
82
        objectName: "header"
76
83
 
77
84
        anchors {
78
85
            top: parent.top