blob: a0b21062c9f135b21f0137b97b09daa1b3cae52d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
pragma Singleton
import Quickshell
import QtQuick
Singleton {
readonly property Sizes sizes: Sizes {}
component Sizes: QtObject {
readonly property int tabIndicatorHeight: 3
readonly property int tabIndicatorSpacing: 5
}
}
|