Fix Div::active not working

Somehow a condition got inverted and caused the bug.
This commit is contained in:
Antonio Scandurra 2023-12-12 17:40:22 +01:00
parent 35670368a5
commit e53b9f5ccf
2 changed files with 3 additions and 1 deletions

View file

@ -66,9 +66,11 @@ impl Render for FocusStory {
let color_4 = theme.status().conflict;
let color_5 = theme.status().ignored;
let color_6 = theme.status().renamed;
let color_7 = theme.status().hint;
div()
.id("parent")
.active(|style| style.bg(color_7))
.track_focus(&self.parent_focus)
.key_context("parent")
.on_action(cx.listener(|_, _action: &ActionA, _cx| {