From b06b7a98c69d4e0e0ec67495c68161706ebe56b1 Mon Sep 17 00:00:00 2001 From: mjbudd77 Date: Thu, 30 Sep 2021 23:10:42 -0400 Subject: [PATCH] Modified name of audio sink starve counter reset button to make it more intuitive. --- src/drivers/Qt/ConsoleSoundConf.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/drivers/Qt/ConsoleSoundConf.cpp b/src/drivers/Qt/ConsoleSoundConf.cpp index e444dce0..119b1841 100644 --- a/src/drivers/Qt/ConsoleSoundConf.cpp +++ b/src/drivers/Qt/ConsoleSoundConf.cpp @@ -263,7 +263,7 @@ ConsoleSndConfDialog_t::ConsoleSndConfDialog_t(QWidget *parent) starveLbl = new QLabel( tr("Sink Starve Count:") ); starveLbl->setToolTip( tr("Running count of the number of samples that the audio sink is starved of.") ); - resetCountBtn = new QPushButton( tr("Reset") ); + resetCountBtn = new QPushButton( tr("Reset Counter") ); resetCountBtn->setIcon(style()->standardIcon(QStyle::SP_DialogResetButton)); connect(resetCountBtn, SIGNAL(clicked(void)), this, SLOT(resetCounters(void)));