forked from qt-creator/qt-creator
debugger: remove obstructing frame around l&w item delegates
This commit is contained in:
@@ -774,10 +774,11 @@ Qt::ItemFlags WatchModel::flags(const QModelIndex &idx) const
|
||||
if (!idx.isValid())
|
||||
return Qt::ItemFlags();
|
||||
|
||||
// enabled, editable, selectable, checkable, and can be used both as the
|
||||
// Enabled, editable, selectable, checkable, and can be used both as the
|
||||
// source of a drag and drop operation and as a drop target.
|
||||
|
||||
static const Qt::ItemFlags notEditable = Qt::ItemIsSelectable| Qt::ItemIsEnabled;
|
||||
static const Qt::ItemFlags notEditable
|
||||
= Qt::ItemIsSelectable | Qt::ItemIsEnabled;
|
||||
static const Qt::ItemFlags editable = notEditable | Qt::ItemIsEditable;
|
||||
|
||||
// Disable editing if debuggee is positively running.
|
||||
|
||||
Reference in New Issue
Block a user