Skip to content

Commit

Permalink
Updated network icon in home page (#531)
Browse files Browse the repository at this point in the history
  • Loading branch information
Leo-Peyronnet committed Jan 3, 2024
1 parent 16a1d92 commit 6bd9525
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion InternetTest/InternetTest/Pages/HomePage.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ internal void LoadNetworkCard()

NetworkTxt.Text = (ssid == null || !connected) ? Properties.Resources.NotConnectedS : ssid;
NetworkTitleTxt.Text = (ssid == null || !connected) ? Properties.Resources.Network : Properties.Resources.WiFi;
NetworkIconTxt.Text = (ssid == null || !connected) ? "\uFB71" : "\uF8C5";
NetworkIconTxt.Text = (ssid == null || !connected) ? "\uFC27" : "\uF8C5";

}
catch // If there is no WiFi
Expand Down

0 comments on commit 6bd9525

Please sign in to comment.