From e5174fdb086d0d3d3ea47721d27040dec701ec31 Mon Sep 17 00:00:00 2001 From: Filippo Scognamiglio Date: Tue, 23 Dec 2014 00:35:02 +0100 Subject: [PATCH] Workaround: workaround the margin in the menubar. --- app/qml/main.qml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/qml/main.qml b/app/qml/main.qml index a23d9e2..f1d9f26 100644 --- a/app/qml/main.qml +++ b/app/qml/main.qml @@ -115,8 +115,9 @@ ApplicationWindow{ } TerminalContainer{ id: terminalContainer + y: appSettings.showMenubar ? 0 : -2 // Workaroud to hide the margin in the menubar. width: parent.width * appSettings.window_scaling - height: parent.height * appSettings.window_scaling + height: (parent.height + Math.abs(y)) * appSettings.window_scaling transform: Scale { xScale: 1 / appSettings.window_scaling