Skip to content

Commit

Permalink
Reduce the mimimum size of the undo dock widget.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@11756 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Oct 4, 2009
1 parent c44c67d commit 1be2a14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/qgsundowidget.cpp
Expand Up @@ -118,8 +118,8 @@ void QgsUndoWidget::setupUi( QDockWidget *UndoWidget )
{
if ( UndoWidget->objectName().isEmpty() )
UndoWidget->setObjectName( QString::fromUtf8( "UndoWidget" ) );
UndoWidget->resize( 350, 223 );
UndoWidget->setMinimumSize( QSize( 346, 220 ) );
UndoWidget->resize( 200, 223 );
UndoWidget->setMinimumSize( QSize( 200, 220 ) );
dockWidgetContents = new QWidget( UndoWidget );
dockWidgetContents->setObjectName( QString::fromUtf8( "dockWidgetContents" ) );
gridLayout = new QGridLayout( dockWidgetContents );
Expand Down

0 comments on commit 1be2a14

Please sign in to comment.