mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-05 13:19:32 -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;
|
mInitialized = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void GxsGroupFrameDialog::showEvent(QShowEvent *event)
|
void GxsGroupFrameDialog::showEvent(QShowEvent* /*event*/)
|
||||||
{
|
{
|
||||||
if (!mInitialized )
|
if (!mInitialized )
|
||||||
{
|
{
|
||||||
|
@ -1086,7 +1086,9 @@ void GxsGroupFrameDialog::updateMessageSummaryListReal(RsGxsGroupId groupId)
|
||||||
|
|
||||||
void GxsGroupFrameDialog::updateGroupSummary()
|
void GxsGroupFrameDialog::updateGroupSummary()
|
||||||
{
|
{
|
||||||
RsThread::async([this]()
|
if (!mInitialized) return;//UI not yet initialized
|
||||||
|
|
||||||
|
RsThread::async([this]()
|
||||||
{
|
{
|
||||||
auto groupInfo = new std::list<RsGxsGenericGroupData*>() ;
|
auto groupInfo = new std::list<RsGxsGenericGroupData*>() ;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue