Fix group names on certain group profiles sometimes never Loading in

This commit is contained in:
Liru Færs
2019-11-16 10:47:13 -05:00
parent 78fbc214ca
commit 89abfe6f86
3 changed files with 20 additions and 13 deletions

View File

@@ -51,6 +51,7 @@ struct LLNameUI : public LFIDBearer
uuid_vec_t getSelectedIDs() const override final { return { mNameID }; }
S32 getNumSelected() const override final { return 1; }
void setIsGroup(bool is_group);
void setNameID(const LLUUID& name_id, bool is_group);
void setNameText(); // Sets the name to whatever the name cache has at the moment
void refresh(const LLUUID& id, const std::string& full_name, bool is_group);
@@ -84,4 +85,4 @@ protected:
bool mIsGroup;
bool mAllowInteract;
std::string mInitialValue;
};
};