mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-08 08:19:26 -05:00
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
|
|
}
|
|
}
|