From 5e6d1814e5c69d4e2e50d01744f5effe2b92ce70 Mon Sep 17 00:00:00 2001
From: Danilo Leal <67129314+danilo-leal@users.noreply.github.com>
Date: Thu, 19 Sep 2024 12:22:10 +0200
Subject: [PATCH] Add stray UI tweaks on the task picker (#18059)
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
This PR adds tiny UI tweaks to the task picker. Just making sure it is
consistent with other pickers throughout Zed.
| Before | After |
|--------|--------|
|
|
|
Release Notes:
- N/A
---
crates/tasks_ui/src/modal.rs | 16 +++++++++-------
1 file changed, 9 insertions(+), 7 deletions(-)
diff --git a/crates/tasks_ui/src/modal.rs b/crates/tasks_ui/src/modal.rs
index 1255d3a94e..931a0b09c3 100644
--- a/crates/tasks_ui/src/modal.rs
+++ b/crates/tasks_ui/src/modal.rs
@@ -410,7 +410,7 @@ impl PickerDelegate for TasksModalDelegate {
Some(
ListItem::new(SharedString::from(format!("tasks-modal-{ix}")))
- .inset(false)
+ .inset(true)
.start_slot::(icon)
.end_slot::(history_run_icon)
.spacing(ListItemSpacing::Sparse)
@@ -448,7 +448,7 @@ impl PickerDelegate for TasksModalDelegate {
picker.refresh(cx);
}))
.tooltip(|cx| {
- Tooltip::text("Delete previously scheduled task", cx)
+ Tooltip::text("Delete Previously Scheduled Task", cx)
}),
);
item.end_hover_slot(delete_button)
@@ -499,7 +499,7 @@ impl PickerDelegate for TasksModalDelegate {
.last_scheduled_task(None)
.is_some()
{
- Some(("Rerun last task", Rerun::default().boxed_clone()))
+ Some(("Rerun Last Task", Rerun::default().boxed_clone()))
} else {
None
};
@@ -511,6 +511,8 @@ impl PickerDelegate for TasksModalDelegate {
.justify_between()
.rounded_b_md()
.bg(cx.theme().colors().ghost_element_selected)
+ .border_t_1()
+ .border_color(cx.theme().colors().border_variant)
.child(
left_button
.map(|(label, action)| {
@@ -535,9 +537,9 @@ impl PickerDelegate for TasksModalDelegate {
.boxed_clone();
this.children(KeyBinding::for_action(&*action, cx).map(|keybind| {
let spawn_oneshot_label = if current_modifiers.secondary() {
- "Spawn oneshot without history"
+ "Spawn Oneshot Without History"
} else {
- "Spawn oneshot"
+ "Spawn Oneshot"
};
Button::new("spawn-onehshot", spawn_oneshot_label)
@@ -549,9 +551,9 @@ impl PickerDelegate for TasksModalDelegate {
this.children(KeyBinding::for_action(&menu::SecondaryConfirm, cx).map(
|keybind| {
let label = if is_recent_selected {
- "Rerun without history"
+ "Rerun Without History"
} else {
- "Spawn without history"
+ "Spawn Without History"
};
Button::new("spawn", label)
.label_size(LabelSize::Small)