diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -10,7 +10,7 @@ * Fixed a bug causing the size of a custom chat text view font set via the configuration dialog to be ignored. A font size modification done - via the Enlarge/Decrease Font Size actions is now applied on top of + via the Enlarge/Shrink Font Size actions is now applied on top of the configured size (or the system default font size, respectively). Changes from Konversation 1.7.2 to 1.7.3: diff --git a/doc/index.docbook b/doc/index.docbook --- a/doc/index.docbook +++ b/doc/index.docbook @@ -2885,7 +2885,7 @@ Find Previous Shift F3 Clear Marker Lines Ctrl Shift R Enlarge Font Size Ctrl++ -Decrease Font Size Ctrl+- +Shrink Font Size Ctrl+- Reset Font Size Ctrl+O --> diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -429,7 +429,7 @@ actionCollection()->addAction(QStringLiteral("reset_font"), action); action=new QAction(this); - action->setText(i18n("Decrease Font Size")); + action->setText(i18n("Shrink Font Size")); actionCollection()->setDefaultShortcuts(action, KStandardShortcut::zoomOut()); action->setEnabled(false); action->setIcon(QIcon::fromTheme(QStringLiteral("zoom-out")));