From 5a1d391dba02d25f101a6bbf62edc5408b2156b4 Mon Sep 17 00:00:00 2001 From: Joe Taylor Date: Tue, 19 Sep 2006 19:21:38 +0000 Subject: [PATCH] Fixed "activebackground" color for Decode button. git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/trunk@301 ab8295b8-cf94-4d9e-aec4-7959e3be5d79 --- wsjt.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wsjt.py b/wsjt.py index f435b0896..961a6eda0 100644 --- a/wsjt.py +++ b/wsjt.py @@ -1391,9 +1391,9 @@ def update(): msg3.configure(text=t,fg='black',bg='red') else: msg3.configure(text=t,fg='black',bg='gray85') - bdecode.configure(bg='gray85',highlightbackground='red') + bdecode.configure(bg='gray85',activebackground='gray95') if Audio.gcom2.ndecoding: #Set button bg=light_blue while decoding - bdecode.configure(bg='#66FFFF',highlightbackground='red') + bdecode.configure(bg='#66FFFF',activebackground='#66FFFF') if mode.get()[:2]=="CW": msg5.configure(text="TR Period: %d s" % (Audio.gcom1.trperiod,), \ bg='white')