[QGIS Commit] r11756 - trunk/qgis/src/app

svn_qgis at osgeo.org svn_qgis at osgeo.org
Sun Oct 4 16:50:48 EDT 2009


Author: timlinux
Date: 2009-10-04 16:50:48 -0400 (Sun, 04 Oct 2009)
New Revision: 11756

Modified:
   trunk/qgis/src/app/qgsundowidget.cpp
Log:
Reduce the mimimum size of the undo dock widget.

Modified: trunk/qgis/src/app/qgsundowidget.cpp
===================================================================
--- trunk/qgis/src/app/qgsundowidget.cpp	2009-10-04 18:06:44 UTC (rev 11755)
+++ trunk/qgis/src/app/qgsundowidget.cpp	2009-10-04 20:50:48 UTC (rev 11756)
@@ -118,8 +118,8 @@
 {
   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 );



More information about the QGIS-commit mailing list