Rename Selector -> Picker in theme

This commit is contained in:
Max Brunsfeld 2022-04-28 14:45:32 -07:00
parent 79fad42424
commit a60c75e343
18 changed files with 32 additions and 32 deletions

View file

@ -208,9 +208,9 @@ impl PickerDelegate for ThemeSelector {
let theme = &settings.theme;
let theme_match = &self.matches[ix];
let style = if selected {
&theme.selector.active_item
&theme.picker.active_item
} else {
&theme.selector.item
&theme.picker.item
};
Label::new(theme_match.string.clone(), style.label.clone())