diff --git a/assets/icons/feedback_16.svg b/assets/icons/feedback_16.svg
new file mode 100644
index 0000000000000000000000000000000000000000..b85a40b353051b348d70ebbb1bf842764a8bc2e5
--- /dev/null
+++ b/assets/icons/feedback_16.svg
@@ -0,0 +1,3 @@
+
diff --git a/crates/collab_ui/src/collab_titlebar_item.rs b/crates/collab_ui/src/collab_titlebar_item.rs
index 59a4f36e273d540b954a56236ac984d4816e0f49..7b4b819b0376b1b5d3078e268e33d72fc5e3e49b 100644
--- a/crates/collab_ui/src/collab_titlebar_item.rs
+++ b/crates/collab_ui/src/collab_titlebar_item.rs
@@ -305,7 +305,7 @@ impl CollabTitlebarItem {
action: Box::new(SignOut),
},
ContextMenuItem::Item {
- label: "Give Feedback".into(),
+ label: "Send Feedback".into(),
action: Box::new(feedback::feedback_editor::GiveFeedback),
},
]
@@ -316,7 +316,7 @@ impl CollabTitlebarItem {
action: Box::new(SignIn),
},
ContextMenuItem::Item {
- label: "Give Feedback".into(),
+ label: "Send Feedback".into(),
action: Box::new(feedback::feedback_editor::GiveFeedback),
},
]
diff --git a/crates/feedback/src/deploy_feedback_button.rs b/crates/feedback/src/deploy_feedback_button.rs
index 52d1ab9d92d45817fd83c016efc3939489b71842..49b6de5a4ac579016bdc61343265e3ece63e14bd 100644
--- a/crates/feedback/src/deploy_feedback_button.rs
+++ b/crates/feedback/src/deploy_feedback_button.rs
@@ -36,7 +36,7 @@ impl View for DeployFeedbackButton {
.item
.style_for(state, active);
- Svg::new("icons/speech_bubble_12.svg")
+ Svg::new("icons/feedback_16.svg")
.with_color(style.icon_color)
.constrained()
.with_width(style.icon_size)
@@ -56,7 +56,7 @@ impl View for DeployFeedbackButton {
})
.with_tooltip::(
0,
- "Give Feedback".into(),
+ "Send Feedback".into(),
Some(Box::new(GiveFeedback)),
theme.tooltip.clone(),
cx,
diff --git a/crates/feedback/src/feedback_editor.rs b/crates/feedback/src/feedback_editor.rs
index 8b12e859e64eb93e070fc1cfa196f87431c73244..9e759b4d1521549ec32e4a6d111bdedeb0d7f2f8 100644
--- a/crates/feedback/src/feedback_editor.rs
+++ b/crates/feedback/src/feedback_editor.rs
@@ -10,7 +10,7 @@ use editor::{Anchor, Editor};
use futures::AsyncReadExt;
use gpui::{
actions,
- elements::{ChildView, Flex, Label, ParentElement},
+ elements::{ChildView, Flex, Label, ParentElement, Svg},
serde_json, AnyViewHandle, AppContext, Element, ElementBox, Entity, ModelHandle,
MutableAppContext, PromptLevel, RenderContext, Task, View, ViewContext, ViewHandle,
};
@@ -250,7 +250,17 @@ impl Item for FeedbackEditor {
fn tab_content(&self, _: Option, style: &theme::Tab, _: &AppContext) -> ElementBox {
Flex::row()
.with_child(
- Label::new("Feedback", style.label.clone())
+ Svg::new("icons/feedback_16.svg")
+ .with_color(style.label.text.color)
+ .constrained()
+ .with_width(style.type_icon_width)
+ .aligned()
+ .contained()
+ .with_margin_right(style.spacing)
+ .boxed(),
+ )
+ .with_child(
+ Label::new("Send Feedback", style.label.clone())
.aligned()
.contained()
.boxed(),