dmitry-s93 / MControlCenter

An application that allows you to change the settings of MSI laptops running Linux
GNU General Public License v3.0
265 stars 66 forks source link

Fix Webcam checkbox flicker & Use Checkbox::clicked signal #177

Closed Jiogo18 closed 5 months ago

Jiogo18 commented 5 months ago

The first commit is about the webcam checkbox. It flickers between ON and OFF when I click it.

This is because MainWindow::updateData() is called after the click, but before ecData is updated. So the update contains the previous value.

Fixed by calling updateEcData, like in MainWindow::setCoolerBoostState

The second commit is about replacing Checkbox::toggled by Checkbox::clicked.