diff options
| author | Maxime Coste <frrrwww@gmail.com> | 2015-09-27 14:24:42 +0100 |
|---|---|---|
| committer | Maxime Coste <frrrwww@gmail.com> | 2015-09-27 14:24:42 +0100 |
| commit | 9fdb822c27e6eee7c3034161d3c893eefc1dc491 (patch) | |
| tree | 525c67b4b33a49b98c7a03dc7b596f7ade35fb59 /src/face.hh | |
| parent | e2720f1fbe09649e6da282cd33b9794867d3d0fb (diff) | |
Add support for italic text attribute
Diffstat (limited to 'src/face.hh')
| -rw-r--r-- | src/face.hh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/face.hh b/src/face.hh index e650cd81..2540705e 100644 --- a/src/face.hh +++ b/src/face.hh @@ -14,7 +14,8 @@ enum class Attribute : int Reverse = 1 << 2, Blink = 1 << 3, Bold = 1 << 4, - Dim = 1 << 5 + Dim = 1 << 5, + Italic = 1 << 6, }; template<> struct WithBitOps<Attribute> : std::true_type {}; |
