mirror of
https://github.com/swift-project/pilotclient.git
synced 2026-04-05 09:15:34 +08:00
Fixed issue with still using header instead of info object data
plus some utility functionality
This commit is contained in:
committed by
Mathew Sutcliffe
parent
b444361c7c
commit
8ad7c1e3c7
@@ -311,12 +311,10 @@ namespace BlackGui
|
||||
void CDbLoadOverviewComponent::ps_dataLoaded(CEntityFlags::Entity entities, CEntityFlags::ReadState state, int number)
|
||||
{
|
||||
Q_UNUSED(number);
|
||||
if (!entities.testFlag(CEntityFlags::SharedInfoObjectEntity) && !entities.testFlag(CEntityFlags::DbInfoObjectEntity) && !CEntityFlags::anySwiftDbEntity(entities)) { return; }
|
||||
if (state == CEntityFlags::ReadFinished || state == CEntityFlags::ReadFinishedRestricted)
|
||||
{
|
||||
this->m_loadInProgress = false;
|
||||
emit this->ps_triggerDigestGuiUpdate();
|
||||
}
|
||||
if (!CEntityFlags::isFinishedReadState(state)) return;
|
||||
if (!entities.testFlag(CEntityFlags::SharedInfoObjectEntity) && entities.testFlag(CEntityFlags::DbInfoObjectEntity) && !CEntityFlags::anySwiftDbEntity(entities)) { return; }
|
||||
this->m_loadInProgress = false;
|
||||
emit this->ps_triggerDigestGuiUpdate();
|
||||
}
|
||||
|
||||
void CDbLoadOverviewComponent::ps_loadInfoObjects()
|
||||
|
||||
@@ -108,7 +108,7 @@ namespace BlackGui
|
||||
//! Refresh directly from DB
|
||||
void ps_refreshDbPressed();
|
||||
|
||||
//! Refresh directly from DB
|
||||
//! Refresh directly from shared files
|
||||
void ps_refreshSharedPressed();
|
||||
|
||||
//! Init the value panel
|
||||
|
||||
Reference in New Issue
Block a user