1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-12 15:27:14 +03:00

Added warning

Using transparency options on windows may cause unexpected behaviour
This commit is contained in:
A_D 2020-11-04 17:54:30 +02:00 committed by Athanasius
parent ed7d79c2f7
commit 5235019d2a

View File

@ -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,