Add Sign in button for an unregistered user

This commit is contained in:
Piotr Osiewicz 2023-06-12 19:38:01 +02:00 committed by Mikayla Maki
parent 092cf93dae
commit 433c5d30f5
No known key found for this signature in database
2 changed files with 2 additions and 1 deletions

View File

@ -99,6 +99,7 @@ impl View for CollabTitlebarItem {
right_container.add_child(self.render_user_menu_button(&theme, avatar, cx));
} else {
right_container.add_children(self.render_connection_status(status, cx));
right_container.add_child(self.render_sign_in_button(&theme, cx));
right_container.add_child(self.render_user_menu_button(&theme, None, cx));
}
@ -319,7 +320,6 @@ impl CollabTitlebarItem {
"Share Feedback",
feedback::feedback_editor::GiveFeedback,
),
ContextMenuItem::action("Sign in", SignIn),
]
};

View File

@ -2,6 +2,7 @@
name = "zed-actions"
version = "0.1.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html