Skip to content

Commit

Permalink
初回起動時にアプリが見えなくなる問題を修正
Browse files Browse the repository at this point in the history
minachun committed Feb 11, 2024
1 parent 77d684a commit 6187075
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Form1.cs
Original file line number Diff line number Diff line change
@@ -314,7 +314,7 @@ private void Form1_Shown(object sender, EventArgs e)
if (this.clockData == null)
{
// デフォルトで
this.clockData = new ClockFontData(new Font(this.Font.Name, 32.0f), new SolidBrush(this.ForeColor), this.BackColor, this.Opacity / 1.2, new PointF(1, 1), new PointF(this.Location.X, this.Location.Y));
this.clockData = new ClockFontData(new Font(this.Font.Name, 32.0f), new SolidBrush(this.ForeColor), this.BackColor, 1.00 / 1.2, new PointF(1, 1), new PointF(this.Location.X, this.Location.Y));
}
}
}

0 comments on commit 6187075

Please sign in to comment.