blob: 81ab164216935139243fb60ab236324809d099f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Copyright (C) 2012 Research In Motion
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
Text {
font.pixelSize: Settings.fontPixelSize;
color: "white";
textFormat: Text.StyledText;
Behavior on opacity { NumberAnimation {} }
}
|