Skip to content
Snippets Groups Projects
Commit 92450263 authored by Yuri Chebotarev's avatar Yuri Chebotarev
Browse files

fix for EXT-6999 Group creation panel: pop-up menu for empty group title...

fix for EXT-6999 Group creation panel: pop-up menu for empty group title editfield has 'Delete' item enabled
reviewed Mike Antipov
https://codereview.productengine.com/secondlife/r/307/

--HG--
branch : product-engine
parent 583e1951
No related branches found
No related tags found
No related merge requests found
...@@ -1440,7 +1440,7 @@ BOOL LLLineEditor::handleUnicodeCharHere(llwchar uni_char) ...@@ -1440,7 +1440,7 @@ BOOL LLLineEditor::handleUnicodeCharHere(llwchar uni_char)
BOOL LLLineEditor::canDoDelete() const BOOL LLLineEditor::canDoDelete() const
{ {
return ( !mReadOnly && (!mPassDelete || (hasSelection() || (getCursor() < mText.length()))) ); return ( !mReadOnly && mText.length() > 0 && (!mPassDelete || (hasSelection() || (getCursor() < mText.length()))) );
} }
void LLLineEditor::doDelete() void LLLineEditor::doDelete()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment