feat: add hint_window widget type

This commit is contained in:
CJ van den Berg 2025-12-01 20:13:12 +01:00
parent 4658c4820f
commit e4dba00625
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9
3 changed files with 5 additions and 0 deletions

View file

@ -162,6 +162,7 @@ pub fn theme_style_from_type(style_type: WidgetType, theme: *const Theme) Theme.
.panel => .{ .fg = theme.editor_widget.bg, .bg = theme.panel.bg },
.editor => .{ .fg = theme.editor_widget.bg, .bg = theme.editor.bg },
},
.hint_window => .{ .fg = theme.editor_widget_border.fg, .bg = theme.editor_widget.bg },
};
}