diff options
-rw-r--r-- | ranger/gui/curses_shortcuts.py | 2 | ||||
-rw-r--r-- | ranger/gui/displayable.py | 1 |
2 files changed, 0 insertions, 3 deletions
diff --git a/ranger/gui/curses_shortcuts.py b/ranger/gui/curses_shortcuts.py index 3d85f697..b85a2de9 100644 --- a/ranger/gui/curses_shortcuts.py +++ b/ranger/gui/curses_shortcuts.py @@ -12,8 +12,6 @@ class CursesShortcuts(SettingsAware): addstr(*args) -- failsafe version of self.win.addstr(*args) """ - colorscheme = None - def addstr(self, *args): try: self.win.addstr(*args) diff --git a/ranger/gui/displayable.py b/ranger/gui/displayable.py index 8ec8e10e..838de3fb 100644 --- a/ranger/gui/displayable.py +++ b/ranger/gui/displayable.py @@ -33,7 +33,6 @@ class Displayable(EnvironmentAware, FileManagerAware, CursesShortcuts): need_redraw -- Should the widget be redrawn? This variable may be set at various places in the script and should eventually be handled (and unset) in the draw() method. - colorscheme -- The colorscheme object. Read-Only: (i.e. reccomended not to change manually) win -- the own curses window object |