11 lines
253 B
Python
11 lines
253 B
Python
|
# Copyright: Ankitects Pty Ltd and contributors
|
||
|
# License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
||
|
|
||
|
from enum import Enum
|
||
|
|
||
|
|
||
|
class BrowserLayout(Enum):
|
||
|
AUTO = "auto"
|
||
|
VERTICAL = "vertical"
|
||
|
HORIZONTAL = "horizontal"
|