mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 06:08:50 +00:00
Android: Convert InputOverlay to Kotlin
This commit is contained in:
parent
0b3d28abaf
commit
9828ffe250
3 changed files with 2344 additions and 1870 deletions
|
@ -238,7 +238,7 @@ public final class EmulationFragment extends Fragment implements SurfaceHolder.C
|
||||||
if (mInputOverlay != null)
|
if (mInputOverlay != null)
|
||||||
{
|
{
|
||||||
mBinding.doneControlConfig.setVisibility(View.VISIBLE);
|
mBinding.doneControlConfig.setVisibility(View.VISIBLE);
|
||||||
mInputOverlay.setIsInEditMode(true);
|
mInputOverlay.setEditMode(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -247,7 +247,7 @@ public final class EmulationFragment extends Fragment implements SurfaceHolder.C
|
||||||
if (mInputOverlay != null)
|
if (mInputOverlay != null)
|
||||||
{
|
{
|
||||||
mBinding.doneControlConfig.setVisibility(View.GONE);
|
mBinding.doneControlConfig.setVisibility(View.GONE);
|
||||||
mInputOverlay.setIsInEditMode(false);
|
mInputOverlay.setEditMode(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue