Debugger: Mark pending C++ breakpoints with hour glass icon

Change-Id: If012953f8fb1e2705244ffe9f02c6bbbbc9d93c1
Reviewed-by: Christian Stenger <christian.stenger@theqtcompany.com>
This commit is contained in:
hjk
2015-08-12 13:49:35 +02:00
parent 31abbba961
commit b769156c19
2 changed files with 9 additions and 1 deletions

View File

@@ -1441,7 +1441,7 @@ QIcon BreakpointItem::icon() const
return BreakHandler::watchpointIcon();
if (!m_params.enabled)
return BreakHandler::disabledBreakpointIcon();
if (m_state == BreakpointInserted)
if (m_state == BreakpointInserted && !m_response.pending)
return BreakHandler::breakpointIcon();
return BreakHandler::pendingBreakpointIcon();
}