From 8a9c76b0036b197edeeca81075db258bc58c83ab Mon Sep 17 00:00:00 2001 From: nytopop Date: Wed, 29 May 2019 06:51:05 -0700 Subject: [PATCH] Don't highlight Tabs separator behind selection --- src/widgets/tabs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/widgets/tabs.rs b/src/widgets/tabs.rs index 7978ee1..69fa130 100644 --- a/src/widgets/tabs.rs +++ b/src/widgets/tabs.rs @@ -131,7 +131,7 @@ where if x >= tabs_area.right() || last_title { break; } else { - buf.set_string(x, tabs_area.top(), self.divider, style); + buf.set_string(x, tabs_area.top(), self.divider, self.style); x += divider_width; } }