Skip to content

Commit 52c45c1

Browse files
committed
Fix issue RedisInsight#3712: Invalid window size on 0.9 firstrun
1 parent f60aedb commit 52c45c1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qml/app.qml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ ApplicationWindow {
3030
if (hRatio > 1 || wRatio > 1) {
3131
console.log("Ratio > 1.0. Resize main window.")
3232
width = Screen.width * 0.9
33-
height = Screen.heigh * 0.8
33+
height = Screen.height * 0.8
3434
}
3535
}
3636

0 commit comments

Comments
 (0)