From 1ed4d271c7d38d70fe10878e7ba55b207e955c63 Mon Sep 17 00:00:00 2001 From: Filippo Scognamiglio Date: Mon, 22 Dec 2014 02:34:58 +0100 Subject: [PATCH] Fix: Issue between texture quality and the new frame. --- app/qml/frames/utils/TerminalFrame.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/qml/frames/utils/TerminalFrame.qml b/app/qml/frames/utils/TerminalFrame.qml index 2b17147..14b7b96 100644 --- a/app/qml/frames/utils/TerminalFrame.qml +++ b/app/qml/frames/utils/TerminalFrame.qml @@ -5,8 +5,8 @@ import "../../utils.js" as Utils Item{ id: framecontainer - property int textureWidth: terminalContainer.width - property int textureHeight: terminalContainer.height + property int textureWidth: terminalContainer.width / appSettings.window_scaling + property int textureHeight: terminalContainer.height / appSettings.window_scaling property int addedWidth property int addedHeight