From 33a94f9bf233bbb3cfe9b407df303bbcd95d37df Mon Sep 17 00:00:00 2001 From: Soeren Apel Date: Fri, 10 Mar 2017 08:52:02 +0100 Subject: [PATCH] Settings: Change view settings shortcuts --- pv/dialogs/settings.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pv/dialogs/settings.cpp b/pv/dialogs/settings.cpp index deeb71f1..5346e5c9 100644 --- a/pv/dialogs/settings.cpp +++ b/pv/dialogs/settings.cpp @@ -120,12 +120,12 @@ QWidget *Settings::get_view_settings_form(QWidget *parent) const QCheckBox *coloured_bg_cb = new QCheckBox(); coloured_bg_cb->setChecked(settings.value(GlobalSettings::Key_View_ColouredBG).toBool()); connect(coloured_bg_cb, SIGNAL(stateChanged(int)), this, SLOT(on_view_colouredBG_changed(int))); - trace_view_layout->addRow(tr("Use &coloured trace background"), coloured_bg_cb); + trace_view_layout->addRow(tr("Use coloured trace &background"), coloured_bg_cb); QCheckBox *always_zoom_to_fit_cb = new QCheckBox(); always_zoom_to_fit_cb->setChecked(settings.value(GlobalSettings::Key_View_AlwaysZoomToFit).toBool()); connect(always_zoom_to_fit_cb, SIGNAL(stateChanged(int)), this, SLOT(on_view_alwaysZoomToFit_changed(int))); - trace_view_layout->addRow(tr("Always zoom-to-&fit during capture"), always_zoom_to_fit_cb); + trace_view_layout->addRow(tr("&Always zoom-to-fit during capture"), always_zoom_to_fit_cb); return form; } -- 2.30.2