Massage styling of auto-update messages a bit

Antonio Scandurra created

Change summary

crates/auto_update/src/auto_update.rs | 2 +-
crates/zed/assets/themes/_base.toml   | 2 +-
crates/zed/src/zed.rs                 | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)

Detailed changes

crates/auto_update/src/auto_update.rs πŸ”—

@@ -253,7 +253,7 @@ impl View for AutoUpdateIndicator {
                 .boxed(),
                 AutoUpdateStatus::Installing => Text::new(
                     "Installing update…".to_string(),
-                    theme.auto_update_done_message.clone(),
+                    theme.auto_update_progress_message.clone(),
                 )
                 .boxed(),
                 AutoUpdateStatus::Updated => Text::new(

crates/zed/assets/themes/_base.toml πŸ”—

@@ -84,7 +84,7 @@ cursor_position = "$text.2"
 diagnostic_message = "$text.2"
 lsp_message = "$text.2"
 auto_update_progress_message = "$text.2"
-auto_update_done_message = "$text.0"
+auto_update_done_message = "$text.2"
 
 [workspace.toolbar]
 background = "$surface.1"

crates/zed/src/zed.rs πŸ”—

@@ -179,8 +179,8 @@ pub fn build_workspace(
         status_bar.add_left_item(diagnostic_summary, cx);
         status_bar.add_left_item(diagnostic_message, cx);
         status_bar.add_left_item(lsp_status, cx);
-        status_bar.add_right_item(cursor_position, cx);
         status_bar.add_right_item(auto_update, cx);
+        status_bar.add_right_item(cursor_position, cx);
     });
 
     workspace