This commit is contained in:
Christopher Jeffrey 2015-04-15 11:10:24 -07:00
parent 62b1003a05
commit d42ce98154
1 changed files with 9 additions and 16 deletions

View File

@ -264,6 +264,15 @@ The screen on which every other node renders.
matter whether the keys are locked.
- __dockBorders__ - automatically "dock" borders with other elements instead of
overlapping, depending on position (__experimental__). for example:
These border-overlapped elements:
┌─────────┌─────────┐
│ box1 │ box2 │
└─────────└─────────┘
Become:
┌─────────┬─────────┐
│ box1 │ box2 │
└─────────┴─────────┘
- __fullUnicode__ - allow for rendering of East Asian double-width characters.
also enable proper rendering of utf-16 surrogate pairs. this allows you to
display text above the basic multilingual plane. this is behind an option
@ -273,22 +282,6 @@ The screen on which every other node renders.
characters that are both surrogate pairs _and_ double-width properly. there
is no way for blessed to fix this unfortunately).
These border-overlapped elements:
```
┌─────────┌─────────┐
│ box1 │ box2 │
└─────────└─────────┘
```
Become:
```
┌─────────┬─────────┐
│ box1 │ box2 │
└─────────┴─────────┘
```
##### Properties:
- inherits all from Node.