Skip to content
This repository was archived by the owner on Nov 24, 2019. It is now read-only.

Commit 0fd251a

Browse files
author
herrwusel
authored
Fix the resolution issues
Fixing issue #8
1 parent 7ce7128 commit 0fd251a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ func getSize() (width, height int) {
161161
return
162162
}
163163

164-
height, err = strconv.Atoi(parts[0])
164+
height, err = strconv.Atoi(parts[1])
165165
if err != nil {
166166
ui.Logger.Fatalf("Malformed %s variable: %q, %s",
167167
EnvResolution, Resolution, err)

0 commit comments

Comments
 (0)