diff --git a/Modules/Bar/Widgets/ActiveWindow.qml b/Modules/Bar/Widgets/ActiveWindow.qml index 25af960..70a0482 100644 --- a/Modules/Bar/Widgets/ActiveWindow.qml +++ b/Modules/Bar/Widgets/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 diff --git a/Modules/Bar/Widgets/MediaMini.qml b/Modules/Bar/Widgets/MediaMini.qml index cc0da68..9875a4f 100644 --- a/Modules/Bar/Widgets/MediaMini.qml +++ b/Modules/Bar/Widgets/MediaMini.qml @@ -144,7 +144,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,