diff options
| author | Eugene Mutavchi <emutavchi@productengine.com> | 2009-12-08 22:27:33 +0200 | 
|---|---|---|
| committer | Eugene Mutavchi <emutavchi@productengine.com> | 2009-12-08 22:27:33 +0200 | 
| commit | 25b8258d811ce2f89fa9b1b31192796cf2567968 (patch) | |
| tree | 80a4926e15b7be26a690567c9eb0892dc5618b28 | |
| parent | c1eec20524f2cfa420857975e21a5609fbfb19df (diff) | |
Fixed low bug EXT-3058 ('Save Pick' Button Inoperable When Edit Only Involves Deleting Text from the Description)
--HG--
branch : product-engine
| -rw-r--r-- | indra/llui/lltexteditor.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/indra/llui/lltexteditor.cpp b/indra/llui/lltexteditor.cpp index e68affc36c..faf9ccbeb8 100644 --- a/indra/llui/lltexteditor.cpp +++ b/indra/llui/lltexteditor.cpp @@ -1887,9 +1887,10 @@ void LLTextEditor::doDelete()  			removeChar();  		} -		onKeyStroke();  	} +	onKeyStroke(); +  	needsReflow();  } | 
