From 60b55127b53bd1328236c9141503d1e614ddc906 Mon Sep 17 00:00:00 2001 From: AlanRockefeller Date: Fri, 27 Mar 2026 08:50:22 -0700 Subject: [PATCH] Improve zoom display in title bar --- faststack/qml/Main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/faststack/qml/Main.qml b/faststack/qml/Main.qml index 620425e..d7ff313 100644 --- a/faststack/qml/Main.qml +++ b/faststack/qml/Main.qml @@ -352,8 +352,8 @@ ApplicationWindow { if (!loupe || fs <= 0 || zs <= 0) return "" if (uiState && uiState.isGridViewActive) return "" var ratio = zs / fs - if (Math.abs(ratio - 1.0) < 0.03) return "Fit to window" - return Math.round(ratio * 100) + "%" + if (Math.abs(ratio - 1.0) < 0.03) return "Zoom: Fit to window (" + Math.round(zs * 100) + "%)" + return "Zoom: " + Math.round(ratio * 100) + "%" } }