logic: Inspect errors during indexing (issue #235)
* Enabled errors table during indexing * Store intermediate errors in StorageCache * Open tab for errors if no tab yet * "Show errors" for file disabled during indexing * Hide indexing dialogs with ESC instead of stopping indexing
This commit is contained in:
@@ -150,6 +150,14 @@ TabsView* TabsController::getView() const
|
||||
return Controller::getView<TabsView>();
|
||||
}
|
||||
|
||||
void TabsController::handleMessage(MessageActivateErrors* message)
|
||||
{
|
||||
if (m_tabs.empty() && Application::getInstance()->isProjectLoaded())
|
||||
{
|
||||
MessageTabOpenWith(SearchMatch::createCommand(SearchMatch::COMMAND_ERROR)).dispatch();
|
||||
}
|
||||
}
|
||||
|
||||
void TabsController::handleMessage(MessageIndexingFinished* message)
|
||||
{
|
||||
if (m_tabs.empty() && Application::getInstance()->isProjectLoaded())
|
||||
|
||||
Reference in New Issue
Block a user