edit prediction: Do not show icon as disabled when there is no buffer open (#24458)

Release Notes:

- N/A
This commit is contained in:
Bennet Bo Fenner 2025-02-07 18:02:14 +01:00 committed by GitHub
parent a6e15dda4b
commit f0565b4e2e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -229,7 +229,7 @@ impl Render for InlineCompletionButton {
return div();
}
let enabled = self.editor_enabled.unwrap_or(false);
let enabled = self.editor_enabled.unwrap_or(true);
let zeta_icon = if enabled {
IconName::ZedPredict
@ -469,9 +469,7 @@ impl InlineCompletionButton {
}),
);
if self.file.as_ref().map_or(false, |file| {
!all_language_settings(Some(file), cx).inline_completions_enabled_for_path(file.path())
}) {
if !self.editor_enabled.unwrap_or(true) {
menu = menu.item(
ContextMenuEntry::new("This file is excluded.")
.disabled(true)