Skip to content

Commit

Permalink
use screen with mouse instead of primary screen (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
zumoshi committed Jun 10, 2017
1 parent 5655380 commit 692cb15
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion BrowserSelect/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ private void Form1_KeyDown(object sender, KeyEventArgs e)

private void center_me()
{
var wa = Screen.PrimaryScreen.WorkingArea;
var wa = Screen.FromPoint(new Point(Cursor.Position.X, Cursor.Position.Y)).WorkingArea;
var left = wa.Width / 2 + wa.Left - Width / 2;
var top = wa.Height / 2 + wa.Top - Height / 2;

Expand Down
4 changes: 2 additions & 2 deletions BrowserSelect/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.3.5.0")]
[assembly: AssemblyFileVersion("1.3.5.0")]
[assembly: AssemblyVersion("1.3.6.0")]
[assembly: AssemblyFileVersion("1.3.6.0")]
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ it has been tested on windows 7, windows 8.1 and windows 10. requires **.net fra

# Download

you can download browser select here : [Browser select v1.3.5 (205KB)](https://github.com/zumoshi/BrowserSelect/releases/download/1.3.5/BrowserSelect.exe)
you can download browser select here : [Browser select v1.3.6 (205KB)](https://github.com/zumoshi/BrowserSelect/releases/download/1.3.6/BrowserSelect.exe)

[![100% safe Award from softpedia](http://s1.softpedia-static.com/_img/sp100free.png?1)](http://www.softpedia.com/get/Internet/Browsers/Browser-Select.shtml#status)

Expand Down Expand Up @@ -74,6 +74,9 @@ just a list of some ideas that can be integrated into BrowserSelect.

# Changelog

v1.3.6 [11/06/17]
- BrowserSelect's window now shows up in the monitor with the mouse cursor instead of the default one (#22)

v1.3.5 [16/12/16]
- fixed crash on startup caused by incompatible/incomplete registry keys (issues #17,#20,#21)

Expand Down

0 comments on commit 692cb15

Please sign in to comment.