SEBWIN-141: Fixed touch activator for action center.
This commit is contained in:
parent
517ceaca4e
commit
13832cb65c
1 changed files with 1 additions and 2 deletions
|
@ -103,9 +103,8 @@ namespace SafeExamBrowser.WindowsApi
|
||||||
private void CheckPosition()
|
private void CheckPosition()
|
||||||
{
|
{
|
||||||
var position = new POINT();
|
var position = new POINT();
|
||||||
var hasMoved = position.X > 200;
|
|
||||||
|
|
||||||
User32.GetCursorPos(ref position);
|
User32.GetCursorPos(ref position);
|
||||||
|
var hasMoved = position.X > 200;
|
||||||
|
|
||||||
if (isDown && hasMoved)
|
if (isDown && hasMoved)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue