Switch the default whitespace mode to pre-line

This mode will preserve new lines, allow breaks, but collapse whitespace. That
means whitespace at the start of lines will be collapsed.
This commit is contained in:
Adam Barth 2015-08-04 11:00:02 -07:00
parent 76e69eb2e9
commit 0694d40bd3

View File

@ -969,7 +969,7 @@ public:
static EPosition initialPosition() { return StaticPosition; }
static EUnicodeBidi initialUnicodeBidi() { return UBNormal; }
static EVisibility initialVisibility() { return VISIBLE; }
static EWhiteSpace initialWhiteSpace() { return PRE_WRAP; }
static EWhiteSpace initialWhiteSpace() { return PRE_LINE; }
static short initialHorizontalBorderSpacing() { return 0; }
static short initialVerticalBorderSpacing() { return 0; }
static Color initialColor() { return Color::white; }