fix: focus the main textbox when clicked

This commit is contained in:
Hojjat 2026-03-23 21:59:34 -06:00 committed by Ashley Wulber
parent 6ea24b8518
commit 0e48718a92

View file

@ -2052,6 +2052,9 @@ impl Application for App {
has_focus,
};
}
if !has_focus {
return self.update_focus();
}
}
Message::GitProjectStatus(project_status) => {
self.git_project_status = Some(project_status);