Merge pull request #2357 from L1Q/master

Actions toolbar can now be placed on other monitors.
This commit is contained in:
Jaex 2017-03-10 12:37:31 +02:00 committed by GitHub
commit 3131428582

View file

@ -39,7 +39,7 @@ public static Rectangle GetScreenBounds()
public static Rectangle GetScreenWorkingArea()
{
return SystemInformation.WorkingArea;
return Screen.AllScreens.Select(x => x.WorkingArea).Combine();
}
public static Rectangle GetScreenBounds2()