Fix 'Erase Drawing' tooltip text

Before, it said 'Erase Drawings', which is incorrect, because only
the drawing on the current page is erased.
remotes/origin/Applications/19.04
Oliver Sander 7 years ago
parent 1547c78340
commit 677fc76760
  1. 2
      part.cpp

@ -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 );

Loading…
Cancel
Save