From 5d5e1f52dde9212adfa75c23984a3d34a7f969a4 Mon Sep 17 00:00:00 2001 From: Kainoa Kanter Date: Fri, 22 Aug 2025 09:22:20 -0700 Subject: [PATCH 1/2] fix accuracy of comment in mediamini --- Modules/Bar/MediaMini.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/Bar/MediaMini.qml b/Modules/Bar/MediaMini.qml index a061031..b332667 100644 --- a/Modules/Bar/MediaMini.qml +++ b/Modules/Bar/MediaMini.qml @@ -145,7 +145,7 @@ Row { NText { id: titleText - // If hovered or just switched window, show up to 300 pixels + // If hovered or just switched window, show up to 400 pixels // If not hovered show up to 150 pixels width: (mouseArea.containsMouse) ? Math.min(fullTitleMetrics.contentWidth, 400 * scaling) : Math.min(fullTitleMetrics.contentWidth, From 22ed13bd56d110dd5a41474228d59b4bc042fc2e Mon Sep 17 00:00:00 2001 From: Kainoa Kanter Date: Fri, 22 Aug 2025 09:26:10 -0700 Subject: [PATCH 2/2] match miniplayer & activewindow max widths --- Modules/Bar/ActiveWindow.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Bar/ActiveWindow.qml b/Modules/Bar/ActiveWindow.qml index ec7b42b..a788b50 100644 --- a/Modules/Bar/ActiveWindow.qml +++ b/Modules/Bar/ActiveWindow.qml @@ -100,10 +100,10 @@ Row { NText { id: titleText - // If hovered or just switched window, show up to 300 pixels + // If hovered or just switched window, show up to 400 pixels // If not hovered show up to 150 pixels width: (showingFullTitle || mouseArea.containsMouse) ? Math.min(fullTitleMetrics.contentWidth, - 300 * scaling) : Math.min( + 400 * scaling) : Math.min( fullTitleMetrics.contentWidth, 150 * scaling) text: getTitle() font.pointSize: Style.fontSizeS * scaling