moment/src/gui/Base/HBottomFocusLine.qml
2021-03-03 17:14:55 -04:00

21 lines
448 B
QML

// Copyright Mirage authors & contributors <https://github.com/mirukana/mirage>
// SPDX-License-Identifier: LGPL-3.0-or-later
import QtQuick 2.12
HRectangleBottomBorder {
id: line
property bool show: false
transform: Scale {
origin.x: line.width / 2
origin.y: line.height / 2
xScale: line.show ? 1 : 0
Behavior on xScale { HNumberAnimation {} }
}
Behavior on color { HColorAnimation {} }
}