We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5911717 + 5041b78 commit 8ed2809Copy full SHA for 8ed2809
src/rviz/properties/property.cpp
@@ -279,7 +279,7 @@ Qt::ItemFlags Property::getViewFlags( int column ) const
279
{
280
// if the parent propery is a disabled bool property or
281
// has its own enabled view flag not set, disable this property as well
282
- Qt::ItemFlags enabled_flag = Qt::ItemIsEnabled;//is_read_only_ || ( parent_ && parent_->getDisableChildren() ) ? Qt::NoItemFlags : Qt::ItemIsEnabled;
+ Qt::ItemFlags enabled_flag = ( parent_ && parent_->getDisableChildren() ) ? Qt::NoItemFlags : Qt::ItemIsEnabled; // || is_read_only_
283
284
if( column == 0 )
285
0 commit comments