From 76fcd7b182d020fb01e181190e28270fbf38e386 Mon Sep 17 00:00:00 2001 From: Aaron Ayres Date: Wed, 12 May 2021 17:25:30 -0500 Subject: [PATCH] remove bg_color trait --- enable/abstract_window.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/enable/abstract_window.py b/enable/abstract_window.py index 07718ce53..23edb28af 100644 --- a/enable/abstract_window.py +++ b/enable/abstract_window.py @@ -68,11 +68,6 @@ class AbstractWindow(HasTraits): # painted with this color before the component gets to draw. bgcolor = ColorTrait("sys_window") - # Unfortunately, for a while, there was a naming inconsistency and the - # background color trait named "bg_color". This is still provided for - # backwards compatibility but should not be used in new code. - bg_color = Alias("bgcolor") - alt_pressed = Bool(False) ctrl_pressed = Bool(False) shift_pressed = Bool(False)