Refactoting: change names in settings, and using camelCase for settings name.

This commit is contained in:
Filippo Scognamiglio
2014-12-23 18:13:34 +01:00
parent 9d5896b62c
commit 4d3c16fabc
13 changed files with 257 additions and 257 deletions

View File

@@ -116,12 +116,12 @@ 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 + Math.abs(y)) * appSettings.window_scaling
width: parent.width * appSettings.windowScaling
height: (parent.height + Math.abs(y)) * appSettings.windowScaling
transform: Scale {
xScale: 1 / appSettings.window_scaling
yScale: 1 / appSettings.window_scaling
xScale: 1 / appSettings.windowScaling
yScale: 1 / appSettings.windowScaling
}
}
SettingsWindow{
@@ -134,7 +134,7 @@ ApplicationWindow{
}
Loader{
anchors.centerIn: parent
active: appSettings.show_terminal_size
active: appSettings.showTerminalSize
sourceComponent: SizeOverlay{
z: 3
terminalSize: terminalContainer.terminalSize