Skip to content

Commit

Permalink
Also mark project as dirty when column widths change
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Jun 3, 2016
1 parent 60dce16 commit 45989f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/qgsattributetableconfig.cpp
Expand Up @@ -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;
}

0 comments on commit 45989f7

Please sign in to comment.