Skip to content

Commit

Permalink
Adjust menu items' texts
Browse files Browse the repository at this point in the history
  • Loading branch information
lzcapp committed Nov 13, 2019
1 parent 3f4ebb2 commit 25f6ccf
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion MikuWeather_CS/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,13 @@ private void CmExit_Click(object sender, EventArgs e) {

private void Update(string provider) {
if (provider == "caiyun") {
cmCaiyun.Enabled = false;
cmCaiyun.Text = @" ✔ 彩云天气API";
cmBaidu.Text = @" 🔘 百度车联网API";
cmBaidu.Text = @" ⭕ 百度车联网API";
} else if (provider == "baidu") {
cmBaidu.Enabled = false;
cmCaiyun.Text = @" ⭕ 彩云天气API";
cmBaidu.Text = @" ✔ 百度车联网API";
}

Dictionary<string, string> dict;
Expand Down

0 comments on commit 25f6ccf

Please sign in to comment.