Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix typo in last commit
git-svn-id: http://svn.osgeo.org/qgis/trunk@13330 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
mhugent committed Apr 20, 2010
1 parent a514b0f commit 0603c45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsformannotationitem.cpp
Expand Up @@ -146,7 +146,7 @@ QSizeF QgsFormAnnotationItem::minimumFrameSize() const
if ( mDesignerWidget )
{
QSizeF widgetMinSize = mDesignerWidget->minimumSize();
return QSizeF( 2 * mFrameBorderWidth + widgetMinSize.width(), 2 * mFrameBorderWidth + widgetMinSize.width() );
return QSizeF( 2 * mFrameBorderWidth + widgetMinSize.width(), 2 * mFrameBorderWidth + widgetMinSize.height() );
}
else
{
Expand Down

0 comments on commit 0603c45

Please sign in to comment.