Skip to content

Commit

Permalink
Naming
Browse files Browse the repository at this point in the history
  • Loading branch information
aurexav committed Jul 14, 2024
1 parent 052c40c commit 9213e00
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ui/panel/chat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,15 +71,15 @@ impl Chat {
ui.horizontal(|ui| {
let tip = if ctx.state.chat.error.load(Ordering::Relaxed) {
RichText::new(format!(
"An error occurred while connecting with \"{}\". Press CTRL/CMD+ENTER to retry.",
"An error occurred while connecting with \"{}\". Press CTRL/META+ENTER to retry.",
ctx.components.setting.ai.api_base
))
.color(Color32::RED)
} else {
RichText::new(if is_chatting {
"Thinking..."
} else {
"Press CTRL/CMD+ENTER to send."
"Press CTRL/META+ENTER to send."
})
.color(if dark_mode { Color32::GOLD } else { Color32::BROWN })
};
Expand Down

0 comments on commit 9213e00

Please sign in to comment.