mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-07-04 05:06:58 -04:00
[EGD-2393] make LineExpansionDirection:: mutualy exclusive
This commit is contained in:
committed by
Mateusz Grzywacz
parent
61a3eadbd5
commit
97ff5deee2
@@ -17,9 +17,9 @@ namespace gui {
|
||||
|
||||
enum class LineExpansionDirection {
|
||||
LINE_EXPAND_UP = 0x01,
|
||||
LINE_EXPAND_DOWN,
|
||||
LINE_EXPAND_LEFT,
|
||||
LINE_EXPAND_RIGHT
|
||||
LINE_EXPAND_DOWN = 0x01 << 1,
|
||||
LINE_EXPAND_LEFT = 0x01 << 2,
|
||||
LINE_EXPAND_RIGHT = 0x01 << 3
|
||||
};
|
||||
|
||||
class Renderer {
|
||||
|
||||
Reference in New Issue
Block a user