Skip to content

Commit

Permalink
Version 3.4.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaskohl committed Feb 8, 2018
1 parent d3fe38b commit 6993883
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CapsLockIndicatorV3/IndicatorOverlay.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ protected override CreateParams CreateParams
protected override void OnShown(EventArgs e)
{
Rectangle workingArea = Screen.GetWorkingArea(new Point(0, 0));
Left = workingArea.X + workingArea.Left + (workingArea.Width - Width - WINDOW_MARGIN);
Top = workingArea.Y + workingArea.Top + (workingArea.Height - Height - WINDOW_MARGIN);
Left = workingArea.X + workingArea.Left + (workingArea.Width - Width - WINDOW_MARGIN - workingArea.Left);
Top = workingArea.Y + workingArea.Top + (workingArea.Height - Height - WINDOW_MARGIN - workingArea.Top);

base.OnShown(e);
}
Expand Down
2 changes: 1 addition & 1 deletion CapsLockIndicatorV3/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
// You can specify all the values or you can use the default the Revision and
// Build Numbers by using the '*' as shown below:
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("3.4.1.0")]
[assembly: AssemblyFileVersion("3.4.2.0")]
[assembly: Guid ("6f54c357-0542-4d7d-9225-338bc3cd7834")]

0 comments on commit 6993883

Please sign in to comment.