From 24b2c53c36c145417b70e475ce05f77c9e7c934e Mon Sep 17 00:00:00 2001 From: Anna Clemens Date: Tue, 17 Nov 2020 22:55:15 -0500 Subject: [PATCH] chore(desktop): use ellipsis character --- XIVChat Desktop/MainWindow.xaml.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/XIVChat Desktop/MainWindow.xaml.cs b/XIVChat Desktop/MainWindow.xaml.cs index 3898fb5..2c45dc3 100644 --- a/XIVChat Desktop/MainWindow.xaml.cs +++ b/XIVChat Desktop/MainWindow.xaml.cs @@ -93,7 +93,7 @@ namespace XIVChat_Desktop { private List History { get; } = new List(); - public string InputPlaceholder => this.App.Connection?.Available == true ? "Send a message..." : "Chat is currently unavailable"; + public string InputPlaceholder => this.App.Connection?.Available == true ? "Send a messageā€¦" : "Chat is currently unavailable"; public MainWindow() { this.InitializeComponent();