diff --git a/crates/auto_update/src/auto_update.rs b/crates/auto_update/src/auto_update.rs index a39f8027e6cd4d9a50a38ea5657be0ea82da787c..dcb36b8dd5f419585cea59e042b15c0650d8a89a 100644 --- a/crates/auto_update/src/auto_update.rs +++ b/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( diff --git a/crates/zed/assets/themes/_base.toml b/crates/zed/assets/themes/_base.toml index 3a84ff6db3b5ea8829227cf8250b42bee481b26e..890825992b1ff93711e4a48b13c231823bfafc28 100644 --- a/crates/zed/assets/themes/_base.toml +++ b/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" diff --git a/crates/zed/src/zed.rs b/crates/zed/src/zed.rs index 479e65dba0dda2576a866498f024312ca441fc4a..6d904842be7ca12ac23fd1dd4766f04ea67adf5d 100644 --- a/crates/zed/src/zed.rs +++ b/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