diff options
| author | Ulf Hermann <ulf.hermann@qt.io> | 2019-10-09 14:58:03 +0200 |
|---|---|---|
| committer | Ulf Hermann <ulf.hermann@qt.io> | 2019-10-20 19:15:57 +0200 |
| commit | bdac502eadd746ee101b95e8d546b6bb754afdeb (patch) | |
| tree | b5d02d7094ef727ac4ede73e232740d9c72fb0bb /src/controls/Styles/Base/CircularButtonStyle.qml | |
| parent | 158b7dafcb21b6f8816841636afba13ebde1c62a (diff) | |
Adapt to new Connections syntax
Change-Id: I299baf89f2530250a333736bb31f4ae470610176
Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/controls/Styles/Base/CircularButtonStyle.qml')
| -rw-r--r-- | src/controls/Styles/Base/CircularButtonStyle.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controls/Styles/Base/CircularButtonStyle.qml b/src/controls/Styles/Base/CircularButtonStyle.qml index 4aa4e5e6e..b2324e0e1 100644 --- a/src/controls/Styles/Base/CircularButtonStyle.qml +++ b/src/controls/Styles/Base/CircularButtonStyle.qml @@ -75,7 +75,7 @@ ButtonStyle { Connections { target: control - onPressedChanged: backgroundCanvas.requestPaint() + function onPressedChanged() { backgroundCanvas.requestPaint() } } onPaint: { |
