Skip to content

Commit

Permalink
Update FormShow.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
lzcapp committed Aug 14, 2023
1 parent 53c024b commit 749c935
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions MikuWeather_CS/FormShow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ public FormShow() {

private void FormShow_Load(object sender, EventArgs e) {
AddPrivateFont();
lnkTodayWeather.Font = new Font(PFCAwe.Families[0], 12, System.Drawing.FontStyle.Bold);
lnkTodayWeather.Font = new Font(PFCAwe.Families[0], 12, FontStyle.Bold);
lnkTodayWeather.UseCompatibleTextRendering = true;
lnkTodayTemp.Font = new Font(PFCAwe.Families[0], 12, System.Drawing.FontStyle.Bold);
lnkTodayTemp.Font = new Font(PFCAwe.Families[0], 12, FontStyle.Bold);
lnkTodayTemp.UseCompatibleTextRendering = true;
lnkTomorrowWeather.Font = new Font(PFCAwe.Families[0], 12, System.Drawing.FontStyle.Bold);
lnkTomorrowWeather.Font = new Font(PFCAwe.Families[0], 12, FontStyle.Bold);
lnkTomorrowWeather.UseCompatibleTextRendering = true;
lnkTomorrowTemp.Font = new Font(PFCAwe.Families[0], 12, System.Drawing.FontStyle.Bold);
lnkTomorrowTemp.Font = new Font(PFCAwe.Families[0], 12, FontStyle.Bold);
lnkTomorrowTemp.UseCompatibleTextRendering = true;
}

Expand Down

0 comments on commit 749c935

Please sign in to comment.