Moved background paint setting tomanager; fixed reference

This commit is contained in:
2023-09-25 23:22:47 -05:00
parent fd282a6595
commit 8046fec794
3 changed files with 7 additions and 4 deletions

View File

@@ -68,7 +68,7 @@ class IPCServer(Singleton):
def _handle_ipc_message(self, conn, start_time) -> None:
while True:
msg = conn.recv()
if settings.is_debug():
if settings_manager.is_debug():
print(msg)
if "FILE|" in msg:
@@ -105,4 +105,4 @@ class IPCServer(Singleton):
except ConnectionRefusedError as e:
print("Connection refused...")
except Exception as e:
print(repr(e))
print(repr(e))