ui: Fixed error count in status bar not restored after discarding interrupted index
This commit is contained in:
@@ -66,9 +66,6 @@ void ComponentManager::setupMain(ViewLayout* viewLayout, Id appId)
|
|||||||
std::shared_ptr<Component> tabsComponent = m_componentFactory.createTabsComponent(viewLayout, screenSearchController);
|
std::shared_ptr<Component> tabsComponent = m_componentFactory.createTabsComponent(viewLayout, screenSearchController);
|
||||||
m_components.push_back(tabsComponent);
|
m_components.push_back(tabsComponent);
|
||||||
|
|
||||||
std::shared_ptr<Component> statusBarComponent = m_componentFactory.createStatusBarComponent(viewLayout);
|
|
||||||
m_components.push_back(statusBarComponent);
|
|
||||||
|
|
||||||
std::shared_ptr<Component> tooltipComponent = m_componentFactory.createTooltipComponent(viewLayout);
|
std::shared_ptr<Component> tooltipComponent = m_componentFactory.createTooltipComponent(viewLayout);
|
||||||
m_components.push_back(tooltipComponent);
|
m_components.push_back(tooltipComponent);
|
||||||
|
|
||||||
@@ -98,6 +95,9 @@ void ComponentManager::setupMain(ViewLayout* viewLayout, Id appId)
|
|||||||
|
|
||||||
std::shared_ptr<Component> activationComponent = m_componentFactory.createActivationComponent();
|
std::shared_ptr<Component> activationComponent = m_componentFactory.createActivationComponent();
|
||||||
m_components.push_back(activationComponent);
|
m_components.push_back(activationComponent);
|
||||||
|
|
||||||
|
std::shared_ptr<Component> statusBarComponent = m_componentFactory.createStatusBarComponent(viewLayout);
|
||||||
|
m_components.push_back(statusBarComponent);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ComponentManager::setupTab(ViewLayout* viewLayout, Id tabId, ScreenSearchSender* screenSearchSender)
|
void ComponentManager::setupTab(ViewLayout* viewLayout, Id tabId, ScreenSearchSender* screenSearchSender)
|
||||||
|
|||||||
Reference in New Issue
Block a user