2019-12-19 07:46:16 -04:00
|
|
|
// SPDX-License-Identifier: LGPL-3.0-or-later
|
|
|
|
|
2019-07-20 15:06:38 -04:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.12
|
|
|
|
|
|
|
|
Flickable {
|
|
|
|
interactive: contentWidth > width || contentHeight > height
|
2020-05-15 20:32:44 -03:00
|
|
|
ScrollBar.vertical: ScrollBar {
|
2020-05-18 11:53:26 -03:00
|
|
|
visible: parent.interactive
|
2020-05-15 20:32:44 -03:00
|
|
|
}
|
2019-07-20 15:06:38 -04:00
|
|
|
}
|