Skip to content
Snippets Groups Projects
Commit 4f94a852 authored by Testicular Slingshot's avatar Testicular Slingshot
Browse files

Fixed a bug where right clicking and opening the object profile floater for...

Fixed a bug where right clicking and opening the object profile floater for the first time doesn't update the creator and owner names. This is due to the line editors having something like 'TestString IgnorePlease' as their initial value instead of a null string.
parent 0dac8225
No related branches found
No related tags found
1 merge request!3Fixed a bug where right clicking and opening the object profile floater for...
...@@ -125,9 +125,11 @@ BOOL LLSidepanelTaskInfo::postBuild() ...@@ -125,9 +125,11 @@ BOOL LLSidepanelTaskInfo::postBuild()
mCreatorNameLabel = getChild<LLTextBox>("CreatorNameLabel"); mCreatorNameLabel = getChild<LLTextBox>("CreatorNameLabel");
mCreatorNameEditor = getChild<LLTextBox>("Creator Name"); mCreatorNameEditor = getChild<LLTextBox>("Creator Name");
mCreatorNameEditor->setValue(LLStringUtil::null);
mOwnerNameLabel = getChild<LLTextBox>("Owner:"); mOwnerNameLabel = getChild<LLTextBox>("Owner:");
mOwnerNameEditor = getChild<LLTextBox>("Owner Name"); mOwnerNameEditor = getChild<LLTextBox>("Owner Name");
mOwnerNameEditor->setValue(LLStringUtil::null);
mGroupNameLabel = getChild<LLTextBox>("Group_label"); mGroupNameLabel = getChild<LLTextBox>("Group_label");
mGroupSetButton = getChild<LLButton>("button set group"); mGroupSetButton = getChild<LLButton>("button set group");
......
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