]> sigrok.org Git - pulseview.git/commitdiff
Settings: Change view settings shortcuts
authorSoeren Apel <redacted>
Fri, 10 Mar 2017 07:52:02 +0000 (08:52 +0100)
committerUwe Hermann <redacted>
Sun, 12 Mar 2017 15:34:41 +0000 (16:34 +0100)
pv/dialogs/settings.cpp

index deeb71f1b87b9296705e1358721df434e8fb6d27..5346e5c91fc2b16ba1fcdecda2a3e8c8241a06c1 100644 (file)
@@ -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;
 }