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