Warning, /multimedia/plasmatube/src/ui/videoplayer/TabIndicator.qml is written in an unsupported language. File is not indexed.

0001 // SPDX-FileCopyrightText: 2020 Carson Black <uhhadd@gmail.com>
0002 // SPDX-License-Identifier: GPL-3.0-or-later
0003 
0004 import QtQuick
0005 
0006 Rectangle {
0007     anchors.fill: parent
0008     color: "transparent"
0009     radius: 3
0010     border {
0011         color: "white"
0012         width: parent.focus ? 1 : 0
0013     }
0014     Component.onCompleted: parent.activeFocusOnTab = true
0015 }
0016