Fix 'Erase Drawing' tooltip text

Before, it said 'Erase Drawings', which is incorrect, because only
the drawing on the current page is erased.
This commit is contained in:
Oliver Sander 2018-12-21 19:09:18 +01:00
parent 1547c78340
commit 677fc76760

View file

@ -901,7 +901,7 @@ void Part::setupActions()
m_presentationDrawingActions = new DrawingToolActions( ac );
QAction *eraseDrawingAction = new QAction( i18n( "Erase Drawings" ), ac );
QAction *eraseDrawingAction = new QAction( i18n( "Erase Drawing" ), ac );
ac->addAction( QStringLiteral("presentation_erase_drawings"), eraseDrawingAction );
eraseDrawingAction->setIcon( QIcon::fromTheme( QStringLiteral("draw-eraser-delete-objects") ) );
eraseDrawingAction->setEnabled( false );