From e5a59254fc54af207b73d7a5dd4e54b3ec26210d Mon Sep 17 00:00:00 2001 From: Zaim Bakar <89463641+241m@users.noreply.github.com> Date: Wed, 31 Aug 2022 03:08:59 +0800 Subject: [PATCH] fixes #543 Horizontal, Vertical should have type Orientation (#544) --- views/constants.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/constants.go b/views/constants.go index b76894a..cf8cc0b 100644 --- a/views/constants.go +++ b/views/constants.go @@ -53,7 +53,7 @@ type Orientation int const ( // Horizontal indicates left to right orientation. - Horizontal = iota + Horizontal Orientation = iota // Vertical indicates top to bottom orientation. Vertical