Skip to content

Commit

Permalink
Put label icon on label toolbar. Some cleanups for labelling ui
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@14703 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
timlinux committed Nov 17, 2010
1 parent 1ce443f commit 523b7b7
Show file tree
Hide file tree
Showing 2 changed files with 162 additions and 150 deletions.
2 changes: 1 addition & 1 deletion src/app/qgisapp.cpp
Expand Up @@ -1823,7 +1823,6 @@ void QgisApp::createToolBars()
mAttributesToolBar->addAction( mActionMapTips ); mAttributesToolBar->addAction( mActionMapTips );
mAttributesToolBar->addAction( mActionShowBookmarks ); mAttributesToolBar->addAction( mActionShowBookmarks );
mAttributesToolBar->addAction( mActionNewBookmark ); mAttributesToolBar->addAction( mActionNewBookmark );
mAttributesToolBar->addAction( mActionLabeling );


// Annotation tools // Annotation tools
bt = new QToolButton(); bt = new QToolButton();
Expand Down Expand Up @@ -1871,6 +1870,7 @@ void QgisApp::createToolBars()
mLabelToolBar = addToolBar( tr( "Label" ) ); mLabelToolBar = addToolBar( tr( "Label" ) );
mLabelToolBar->setIconSize( myIconSize ); mLabelToolBar->setIconSize( myIconSize );
mLabelToolBar->setObjectName( "Label" ); mLabelToolBar->setObjectName( "Label" );
mLabelToolBar->addAction( mActionLabeling );
mLabelToolBar->addAction( mActionMoveLabel ); mLabelToolBar->addAction( mActionMoveLabel );
mLabelToolBar->addAction( mActionRotateLabel ); mLabelToolBar->addAction( mActionRotateLabel );
mLabelToolBar->addAction( mActionChangeLabelProperties ); mLabelToolBar->addAction( mActionChangeLabelProperties );
Expand Down

0 comments on commit 523b7b7

Please sign in to comment.