diff options
author | squigz <squigglezworth@gmail.com> | 2018-01-04 20:52:06 -0500 |
---|---|---|
committer | squigz <squigglezworth@gmail.com> | 2018-01-04 20:52:06 -0500 |
commit | 5a70e87c219c415bf9443cdf968e0e760d84ab12 (patch) | |
tree | 6b327e75f9629d4763bcaef170877b5b4c70e408 | |
parent | 4a1f382485894cfa9928ae734c93ba21dab888d1 (diff) | |
download | ranger-5a70e87c219c415bf9443cdf968e0e760d84ab12.tar.gz |
draw_borders: treat true as both for backwards compatibility
-rw-r--r-- | ranger/gui/widgets/view_miller.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ranger/gui/widgets/view_miller.py b/ranger/gui/widgets/view_miller.py index aa05260d..39fe938e 100644 --- a/ranger/gui/widgets/view_miller.py +++ b/ranger/gui/widgets/view_miller.py @@ -112,7 +112,7 @@ class ViewMiller(ViewBase): # pylint: disable=too-many-ancestors,too-many-insta separators = True if string == "separators" else False borders = True if string == "outline" else False - both = True if string == "both" else False + both = True if string == "both" or string == "true" else False self.color('in_browser', 'border') left_start = 0 |