Add Sign in button for an unregistered user

Piotr Osiewicz created

Change summary

crates/collab_ui/src/collab_titlebar_item.rs | 2 +-
crates/zed-actions/Cargo.toml                | 1 +
2 files changed, 2 insertions(+), 1 deletion(-)

Detailed changes

crates/collab_ui/src/collab_titlebar_item.rs 🔗

@@ -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),
                 ]
             };
 

crates/zed-actions/Cargo.toml 🔗

@@ -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