summaryrefslogtreecommitdiffstats
path: root/examples/webenginequick/lifecycle/WebToolButton.qml
blob: bdf94b4ba4ecb5c216fbf37792c9f690b87eee94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright (C) 2019 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

import QtQuick
import QtQuick.Controls
import QtQuick.Controls.Material

ToolButton {
    id: root
    font.bold: true
    font.pointSize: 12
    ToolTip.delay: 1000
    ToolTip.visible: hovered
    implicitWidth: 32
    implicitHeight: 32
}