STORM-1577 WIP Don't reset the hint on click in a key input field if the field is disabled.
parent
56b2e4ac7c
commit
2bcef9312b
|
|
@ -241,7 +241,7 @@ void LLFloaterTranslationSettings::verifyKey(int service, const std::string& key
|
|||
void LLFloaterTranslationSettings::onEditorFocused(LLFocusableElement* control)
|
||||
{
|
||||
LLLineEditor* editor = dynamic_cast<LLLineEditor*>(control);
|
||||
if (editor)
|
||||
if (editor && editor->hasTabStop()) // if enabled. getEnabled() doesn't work
|
||||
{
|
||||
if (editor->getTentative())
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue