From 5235019d2ab851fa91ff8c8dd1f40750eb8cf546 Mon Sep 17 00:00:00 2001 From: A_D Date: Wed, 4 Nov 2020 17:54:30 +0200 Subject: [PATCH] Added warning Using transparency options on windows may cause unexpected behaviour --- prefs.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/prefs.py b/prefs.py index bc5c38ed..1004a993 100644 --- a/prefs.py +++ b/prefs.py @@ -762,7 +762,14 @@ class PreferencesDialog(tk.Toplevel): command=lambda _: self.parent.wm_attributes("-alpha", self.transparency.get() / 100) ) - nb.Label(appearance_frame, text="100 means fully opaque.\nWindow is updated in real time").grid( + nb.Label( + appearance_frame, + text=( + "100 means fully opaque.\n" + "Window is updated in real time\n" + "do NOT use this with the transparent theme on windows" + ) + ).grid( column=3, padx=self.PADX, pady=self.PADY*2,