Use window scaling parameter for framebuffer size.

This commit is contained in:
Filippo Scognamiglio
2018-12-03 12:42:11 +01:00
parent f497bb4b44
commit da6795f002
4 changed files with 6 additions and 12 deletions

View File

@@ -137,13 +137,8 @@ ApplicationWindow{
TerminalContainer{
id: terminalContainer
y: appSettings.showMenubar ? 0 : -2 // Workaroud to hide the margin in the menubar.
width: parent.width * appSettings.windowScaling
height: (parent.height + Math.abs(y)) * appSettings.windowScaling
transform: Scale {
xScale: 1 / appSettings.windowScaling
yScale: 1 / appSettings.windowScaling
}
width: parent.width
height: (parent.height + Math.abs(y))
}
SettingsWindow{
id: settingswindow