From 3576acfa2c57922f5c0b9c7aff715670dfb4fa5c Mon Sep 17 00:00:00 2001 From: leminlimez <59540996+leminlimez@users.noreply.github.com> Date: Mon, 13 Jan 2025 10:08:07 -0500 Subject: [PATCH] make thermalmonitord check daemon modify --- gui/main_window.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gui/main_window.py b/gui/main_window.py index f93b0c2..7f806f7 100644 --- a/gui/main_window.py +++ b/gui/main_window.py @@ -774,6 +774,9 @@ def on_modifyDaemonsChk_clicked(self, checked: bool): def on_thermalmonitordChk_clicked(self, checked: bool): tweaks["Daemons"].set_multiple_values(Daemon.thermalmonitord.value, value=checked) + if checked: + # set the modify toggle checked so it actually applies + self.on_modifyDaemonsChk_clicked(True) def on_otadChk_clicked(self, checked: bool): tweaks["Daemons"].set_multiple_values(Daemon.OTA.value, value=checked) def on_usageTrackingAgentChk_clicked(self, checked: bool):