forked from Shinonome/dots-hyprland
17 lines
322 B
QML
17 lines
322 B
QML
import QtQuick
|
|
|
|
Item {
|
|
id: root
|
|
|
|
property alias longestText: longestTextMetrics.text
|
|
property alias font: longestTextMetrics.font
|
|
|
|
implicitWidth: longestTextMetrics.width
|
|
implicitHeight: longestTextMetrics.height
|
|
|
|
TextMetrics {
|
|
id: longestTextMetrics
|
|
text: root.longestText
|
|
}
|
|
}
|