Git commit ba083b9983c19b13999a9733f7c1ec64c5347c8f by Shubham Jangra. Committed on 11/09/2019 at 09:40. Pushed by shubham into branch 'master'.
Revert "Rename action name to make it consistent with other applications" This reverts commit 695028fca5439d55b959573871549aa6680eb39c. M +1 -1 ChangeLog M +1 -1 doc/index.docbook M +1 -1 src/mainwindow.cpp https://commits.kde.org/konversation/ba083b9983c19b13999a9733f7c1ec64c5347c8f diff --git a/ChangeLog b/ChangeLog index 5d3e5a3c..5e5c799a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -10,7 +10,7 @@ regression that crept into v1.7.3. * 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/Shrink Font Size actions is now applied on top of + via the Enlarge/Decrease 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 index 81ecd36e..679ddb1c 100644 --- a/doc/index.docbook +++ b/doc/index.docbook @@ -2885,7 +2885,7 @@ or menu bars. --> Find Previous Shift F3 Clear Marker Lines Ctrl Shift R Enlarge Font Size Ctrl++ -Shrink Font Size Ctrl+- +Decrease Font Size Ctrl+- Reset Font Size Ctrl+O --> <varlistentry> diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index c4148bf8..35949837 100644 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -429,7 +429,7 @@ MainWindow::MainWindow() : KXmlGuiWindow(nullptr) actionCollection()->addAction(QStringLiteral("reset_font"), action); action=new QAction(this); - action->setText(i18n("Shrink Font Size")); + action->setText(i18n("Decrease Font Size")); actionCollection()->setDefaultShortcuts(action, KStandardShortcut::zoomOut()); action->setEnabled(false); action->setIcon(QIcon::fromTheme(QStringLiteral("zoom-out")));
