forked from qt-creator/qt-creator
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:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user