mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-07 20:39:04 +03:00
Add Sign in button for an unregistered user
This commit is contained in:
parent
092cf93dae
commit
433c5d30f5
@ -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),
|
||||
]
|
||||
};
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user