SEBWIN-368: Increased timeout for touch activation of action center.
This commit is contained in:
parent
bf7fdf3f5f
commit
316e2ae8b8
2 changed files with 3 additions and 3 deletions
|
@ -50,7 +50,7 @@ namespace SafeExamBrowser.UserInterface.Shared.Activators
|
||||||
if (state == MouseButtonState.Pressed && inActivationArea)
|
if (state == MouseButtonState.Pressed && inActivationArea)
|
||||||
{
|
{
|
||||||
isDown = true;
|
isDown = true;
|
||||||
Task.Delay(200).ContinueWith(_ => CheckPosition());
|
Task.Delay(500).ContinueWith(_ => CheckPosition());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,8 +11,8 @@
|
||||||
<Icon Id="ResetUtilityIcon" SourceFile="Resources\ResetUtility.ico" />
|
<Icon Id="ResetUtilityIcon" SourceFile="Resources\ResetUtility.ico" />
|
||||||
<Property Id="ARPPRODUCTICON" Value="ApplicationIcon" />
|
<Property Id="ARPPRODUCTICON" Value="ApplicationIcon" />
|
||||||
<WixVariable Id="WixUILicenseRtf" Value="Resources\License.rtf" />
|
<WixVariable Id="WixUILicenseRtf" Value="Resources\License.rtf" />
|
||||||
<WixVariable Id="WixUIBannerBmp" Value="Resources\Banner.bmp" />
|
<WixVariable Id="WixUIBannerBmp" Value="Resources\Banner.bmp" />
|
||||||
<WixVariable Id="WixUIDialogBmp" Value="Resources\Dialog.bmp" />
|
<WixVariable Id="WixUIDialogBmp" Value="Resources\Dialog.bmp" />
|
||||||
<Feature Id="ProductFeature" Title="Safe Exam Browser" Level="1">
|
<Feature Id="ProductFeature" Title="Safe Exam Browser" Level="1">
|
||||||
<ComponentGroupRef Id="ApplicationComponents" />
|
<ComponentGroupRef Id="ApplicationComponents" />
|
||||||
<ComponentGroupRef Id="ConfigurationComponents" />
|
<ComponentGroupRef Id="ConfigurationComponents" />
|
||||||
|
|
Loading…
Reference in a new issue