1
0
mirror of https://github.com/gdamore/tcell.git synced 2025-04-24 13:48:51 +08:00

fixes #543 Horizontal, Vertical should have type Orientation (#544)

This commit is contained in:
Zaim Bakar 2022-08-31 03:08:59 +08:00 committed by GitHub
parent 46afc5218a
commit e5a59254fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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