Skip to content

Commit

Permalink
append space to list widgets in options and vector and raster layer p…
Browse files Browse the repository at this point in the history
…roperty dialogs (fixes #2554)

git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@13519 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
jef committed May 17, 2010
1 parent 63693eb commit a51bb12
Show file tree
Hide file tree
Showing 4 changed files with 352 additions and 232 deletions.
2 changes: 1 addition & 1 deletion src/app/qgsvectorlayerproperties.cpp
Expand Up @@ -145,7 +145,7 @@ QgsVectorLayerProperties::QgsVectorLayerProperties(
mOverlayDialogs.push_back( d );
//shamelessly hard coded - what will we do if other types of layer plugins exist? TS
QListWidgetItem * mypItem = new QListWidgetItem( QgisApp::getThemeIcon( "propertyicons/diagram.png" ), ( *it )->name() );
listWidget->insertItem( stackedWidget->count(), mypItem );
listWidget->insertItem( stackedWidget->count()-1, mypItem );
}

stackedWidget->setCurrentIndex( 0 );
Expand Down

0 comments on commit a51bb12

Please sign in to comment.