edit prediction: Do not show icon as disabled when there is no buffer open (#24458)
Release Notes: - N/A
This commit is contained in:
parent
a6e15dda4b
commit
f0565b4e2e
1 changed files with 2 additions and 4 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue