Test the search inclusions/exclusions

This commit is contained in:
Kirill Bulatov 2023-05-09 23:33:55 +03:00 committed by Kirill Bulatov
parent 80fc1bc276
commit dfdf7e4866
4 changed files with 353 additions and 30 deletions

View file

@ -23,6 +23,9 @@ pub trait ToolbarItemView: View {
fn pane_focus_update(&mut self, _pane_focused: bool, _cx: &mut ViewContext<Self>) {}
/// Number of times toolbar's height will be repeated to get the effective height.
/// Useful when multiple rows one under each other are needed.
/// The rows have the same width and act as a whole when reacting to resizes and similar events.
fn row_count(&self) -> usize {
1
}