forked from qt-creator/qt-creator
debugger: don't allow L&E expansion while inferior runs
Change-Id: I1179f2b3b0f1e0099e5ab2a30b09e1216cd68fd7 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -564,7 +564,7 @@ bool WatchModel::canFetchMore(const QModelIndex &index) const
|
||||
{
|
||||
WatchItem *item = watchItem(index);
|
||||
QTC_ASSERT(item, return false);
|
||||
return index.isValid() && !m_fetchTriggered.contains(item->iname);
|
||||
return index.isValid() && m_handler->m_contentsValid && !m_fetchTriggered.contains(item->iname);
|
||||
}
|
||||
|
||||
void WatchModel::fetchMore(const QModelIndex &index)
|
||||
|
||||
Reference in New Issue
Block a user