Skip to content

Commit 1be2a14

Browse files
author
timlinux
committedOct 4, 2009
Reduce the mimimum size of the undo dock widget.
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@11756 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/app/qgsundowidget.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ void QgsUndoWidget::setupUi( QDockWidget *UndoWidget )
118118
{
119119
if ( UndoWidget->objectName().isEmpty() )
120120
UndoWidget->setObjectName( QString::fromUtf8( "UndoWidget" ) );
121-
UndoWidget->resize( 350, 223 );
122-
UndoWidget->setMinimumSize( QSize( 346, 220 ) );
121+
UndoWidget->resize( 200, 223 );
122+
UndoWidget->setMinimumSize( QSize( 200, 220 ) );
123123
dockWidgetContents = new QWidget( UndoWidget );
124124
dockWidgetContents->setObjectName( QString::fromUtf8( "dockWidgetContents" ) );
125125
gridLayout = new QGridLayout( dockWidgetContents );

0 commit comments

Comments
 (0)
Please sign in to comment.