16 lines
383 B
QML
16 lines
383 B
QML
/* === This file is part of Calamares - <https://calamares.io> ===
|
|
*
|
|
* SPDX-FileCopyrightText: 2018 Adriaan de Groot <groot@kde.org>
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*
|
|
* Calamares is Free Software: see the License-Identifier above.
|
|
*
|
|
*/
|
|
|
|
NavButton {
|
|
id: backButton
|
|
anchors.left: parent.left
|
|
visible: parent.currentSlide > 0
|
|
isForward: false
|
|
}
|