Skip to content

Commit

Permalink
FrmSlideshow: updated timer border radius
Browse files Browse the repository at this point in the history
  • Loading branch information
d2phap committed Jan 31, 2025
1 parent 31e474b commit 23b89e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/igcmd/Tools/FrmSlideshow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ private void PicMain_Render(object? sender, RenderEventArgs e)
var bgY = PicMain.Height - bgSize.Height - padding;

// draw background
var borderRadius = BHelper.IsOS(WindowsOS.Win11OrLater) ? 10 : 1;
var borderRadius = BHelper.IsOS(WindowsOS.Win11OrLater) ? PicMain.MessageBorderRadius : 1;
var bgColor = Color.FromArgb(150, PicMain.BackColor);
var bgRect = new RectangleF(bgX, bgY, bgSize.Width, bgSize.Height);

Expand Down

0 comments on commit 23b89e1

Please sign in to comment.