fix: add the touch emulation method for Android TV
This commit is contained in:
parent
392cacaabc
commit
2987e03a86
5 changed files with 63 additions and 0 deletions
|
|
@ -159,3 +159,10 @@ bool SystemController::isAuthenticated()
|
|||
return true;
|
||||
#endif
|
||||
}
|
||||
|
||||
void SystemController::sendTouch(float x, float y)
|
||||
{
|
||||
#ifdef Q_OS_ANDROID
|
||||
AndroidController::instance()->sendTouch(x, y);
|
||||
#endif
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue