From 062496642ff12e80c0ebea56e9579b5fd823fb3a Mon Sep 17 00:00:00 2001 From: shrlnm Date: Sat, 10 Sep 2022 08:01:21 +0300 Subject: [PATCH] Enables CFC option in launcher by default and change in description --- main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.py b/main.py index 3de9cd4..689796a 100755 --- a/main.py +++ b/main.py @@ -199,7 +199,7 @@ class settings(): logName = 'log.txt' csvOption = 'csv' log = True - cfc = False + cfc = True n1c = False si = False csv = False @@ -457,7 +457,7 @@ if osname != 'android': self.style.configure('.', font="TkDefaultFont") self.style.map('.', background=[('selected', '#d9d9d9'), ('active', '#d9d9d9')]) - self.root.geometry("500x420+0+28") + self.root.geometry("500x500+0+28") self.root.title("Pyren launcher") self.root.configure(background="#d9d9d9") self.root.configure(highlightbackground="#d9d9d9") @@ -587,7 +587,7 @@ if osname != 'android': self.mCAN.configure(highlightbackground="#d9d9d9") self.mCAN.configure(highlightcolor="black") self.mCAN.configure( - text='''These options should be enabled for some fake chinese ELM. Any of them decrease data rate.''') + text='''CFC - enable soft flow control (recommended) N1C - disable L1 cache (not recommended)''') self.mCAN.configure(width=142) self.mKWP = tk.Message(self.root)