Also mark project as dirty when column widths change

This commit is contained in:
Matthias Kuhn 2016-06-03 10:09:09 +02:00
parent 60dce16e9e
commit 45989f7f36

View File

@ -271,5 +271,5 @@ void QgsAttributeTableConfig::writeXml( QDomNode& node ) const
bool QgsAttributeTableConfig::ColumnConfig::operator== ( const ColumnConfig& other ) const
{
return type == other.type && name == other.name && hidden == other.hidden;
return type == other.type && name == other.name && hidden == other.hidden && width == other.width;
}