diff --git a/Docs/docs/changelog.md b/Docs/docs/changelog.md index 790ffb1ba..ff36a9cbd 100644 --- a/Docs/docs/changelog.md +++ b/Docs/docs/changelog.md @@ -2,7 +2,7 @@ Version history / release notes for each release. -## Version 3.2.3 (Desktop-only Hotfix) +## Version 3.2.3 (Hotfix) Fixes/Changes: * Fixed OpenGL crash at startup when SDL2.dll is found diff --git a/FamiStudio/FamiStudio.Android.csproj b/FamiStudio/FamiStudio.Android.csproj index e03cf9844..9a5dbb861 100644 --- a/FamiStudio/FamiStudio.Android.csproj +++ b/FamiStudio/FamiStudio.Android.csproj @@ -610,6 +610,7 @@ + diff --git a/FamiStudio/Properties/AndroidManifest.xml b/FamiStudio/Properties/AndroidManifest.xml index a7587550a..7a535bafe 100644 --- a/FamiStudio/Properties/AndroidManifest.xml +++ b/FamiStudio/Properties/AndroidManifest.xml @@ -1,5 +1,5 @@  - + diff --git a/FamiStudio/Source/UI/Droid/FamiStudioForm.cs b/FamiStudio/Source/UI/Droid/FamiStudioForm.cs index 1b75eeecd..5db73e251 100644 --- a/FamiStudio/Source/UI/Droid/FamiStudioForm.cs +++ b/FamiStudio/Source/UI/Droid/FamiStudioForm.cs @@ -756,7 +756,7 @@ public void OnScaleEnd(ScaleGestureDetector detector) } } - public bool OnDoubleTap(MotionEvent? e) + public bool OnDoubleTap(MotionEvent e) { if (!IsAsyncDialogInProgress) { @@ -771,13 +771,13 @@ public bool OnDoubleTap(MotionEvent? e) } } - public bool OnDoubleTapEvent(MotionEvent? e) + public bool OnDoubleTapEvent(MotionEvent e) { //Debug.WriteLine($"OnDoubleTapEvent ({e.GetX()}, {e.GetY()})"); return false; } - public bool OnSingleTapConfirmed(MotionEvent? e) + public bool OnSingleTapConfirmed(MotionEvent e) { //Debug.WriteLine($"OnSingleTapConfirmed ({e.GetX()}, {e.GetY()})"); return false;