1/**
2 * \file ThinDivier.qml
3 * Dummy divider line.
4 *
5 * \b Project: Kid3
6 * \author Urs Fleisch
7 * \date 16 Feb 2015
8 *
9 * Copyright (C) 2015-2018  Urs Fleisch
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published by
13 * the Free Software Foundation; version 3.
14 *
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18 * GNU Lesser General Public License for more details.
19 *
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
22 */
23
24import QtQuick 2.11
25
26Rectangle {
27  height: 2
28  gradient: Gradient {
29    GradientStop { position: 0.0; color: Qt.rgba(0, 0, 0, 0.1) }
30    GradientStop { position: 0.49; color: Qt.rgba(0, 0, 0, 0.1) }
31    GradientStop { position: 0.5; color: Qt.rgba(1, 1, 1, 0.4) }
32    GradientStop { position: 1.0; color: Qt.rgba(1, 1, 1, 0.4) }
33  }
34}
35