mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-02 05:02:33 -04:00
Fix Channel RsLink if update before UI Init
This commit is contained in:
parent
8f5656433a
commit
c745800e18
1 changed files with 4 additions and 2 deletions
|
@ -179,7 +179,7 @@ void GxsGroupFrameDialog::initUi()
|
|||
mInitialized = true;
|
||||
}
|
||||
|
||||
void GxsGroupFrameDialog::showEvent(QShowEvent *event)
|
||||
void GxsGroupFrameDialog::showEvent(QShowEvent* /*event*/)
|
||||
{
|
||||
if (!mInitialized )
|
||||
{
|
||||
|
@ -1086,7 +1086,9 @@ void GxsGroupFrameDialog::updateMessageSummaryListReal(RsGxsGroupId groupId)
|
|||
|
||||
void GxsGroupFrameDialog::updateGroupSummary()
|
||||
{
|
||||
RsThread::async([this]()
|
||||
if (!mInitialized) return;//UI not yet initialized
|
||||
|
||||
RsThread::async([this]()
|
||||
{
|
||||
auto groupInfo = new std::list<RsGxsGenericGroupData*>() ;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue