Skip to content

Commit

Permalink
fix: Menu update label positioned statically
Browse files Browse the repository at this point in the history
Was right-aligned by code and could also be partly hidden by "What's new?" label.
  • Loading branch information
cjakeman committed Dec 10, 2023
1 parent c81447b commit 74466d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
6 changes: 2 additions & 4 deletions Source/Menu/MainForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions Source/Menu/MainForm.cs
Expand Up @@ -330,11 +330,6 @@ void CheckForUpdate()
linkLabelUpdate.Image = ElevationIcon;
else
linkLabelUpdate.Image = null;
linkLabelUpdate.AutoSize = true;
linkLabelUpdate.Left = panelDetails.Right - linkLabelUpdate.Width - ElevationIcon.Width;
linkLabelUpdate.AutoSize = false;
linkLabelUpdate.Width = panelDetails.Right - linkLabelUpdate.Left;
linkLabelUpdate.Location = new System.Drawing.Point(700, 9);
});
}

Expand Down

0 comments on commit 74466d9

Please sign in to comment.