From 5f02fb58a131038e91fa1250ae4865e27bcb94a2 Mon Sep 17 00:00:00 2001 From: Daniel Klaffenbach Date: Sat, 26 Jun 2010 20:56:02 +0200 Subject: [PATCH] Do not call setDown on SmartReflex button This wasn't working reliably anyway and might confuse the user. --- src/mainwindow.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp index afffeef..56c4b69 100755 --- a/src/mainwindow.cpp +++ b/src/mainwindow.cpp @@ -273,13 +273,10 @@ void MainWindow::refresh() ui->cpu_temp->setText( getCPUTemp() ); //smart reflex button - if ( getSmartReflexState() == 1 ) { - ui->sr_btn->setDown( true ); + if ( getSmartReflexState() == 1 ) ui->sr_btn->setText( tr( "Enabled" ) ); - } else { - ui->sr_btn->setDown( false ); + else ui->sr_btn->setText( tr( "Disabled" ) ); - } //display frequency slider -- 1.7.9.5