From f0a4549eb9a1adc546f31c3e8b0c5958fbc28edd Mon Sep 17 00:00:00 2001
From: =?utf8?q?Aleksander=20=C5=81ukasz?=
 <aleksander.lukasz@nowoczesnapolska.org.pl>
Date: Wed, 7 Aug 2013 15:04:24 +0200
Subject: [PATCH] FIX: white-space: pre-wrap prevents collapsing spaces in
 document-text-element

Without it is impossible to select whole text in a document-text-element
that starts with one space (because of offset == 1 on selection.api)
---
 modules/documentCanvas/nodes.less | 1 +
 1 file changed, 1 insertion(+)

diff --git a/modules/documentCanvas/nodes.less b/modules/documentCanvas/nodes.less
index 2deb807..d02e872 100644
--- a/modules/documentCanvas/nodes.less
+++ b/modules/documentCanvas/nodes.less
@@ -3,6 +3,7 @@
     display: inline;
     margin: 0 1px;
     border: 1px solid white;
+    white-space: pre-wrap;
 }
 
 [wlxml-tag] {
-- 
2.20.1