From 34c938eb19eb9d9412204411d44198c50fb5bdb1 Mon Sep 17 00:00:00 2001 From: Moritz Bunkus Date: Fri, 15 Jul 2022 20:03:23 +0200 Subject: [PATCH] GUI: prefs: add tooltip for number of recently used entries remembered See #3362. --- src/mkvtoolnix-gui/main_window/preferences_dialog.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/mkvtoolnix-gui/main_window/preferences_dialog.cpp b/src/mkvtoolnix-gui/main_window/preferences_dialog.cpp index 7cd8a0e7e..f98063cd8 100644 --- a/src/mkvtoolnix-gui/main_window/preferences_dialog.cpp +++ b/src/mkvtoolnix-gui/main_window/preferences_dialog.cpp @@ -274,6 +274,9 @@ PreferencesDialog::setupToolTips() { .arg(QY("By default the GUI will start up with a dark color scheme if the color scheme in Windows is set to dark mode.")) .arg(QY("If this option is enabled, the GUI will not use its dark mode and fall back to the default color scheme."))); + + Util::setToolTip(ui->sbGuiNumRecentlyUsedStrings, QY("This affects functions such as the selector of recently used destination directories in the multiplexer.")); + Util::setToolTip(ui->cbGuiCheckForUpdates, Q("%1 %2 %3") .arg(QY("If enabled, the program will check online whether or not a new release of MKVToolNix is available on the home page."))