Android TV Remote: Add option to disable IME (#95765)

This commit is contained in:
tronikos 2023-07-24 11:00:51 -07:00 committed by GitHub
parent 2cfc11d4b9
commit d0722e2312
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 126 additions and 7 deletions

View file

@ -4,3 +4,6 @@ from __future__ import annotations
from typing import Final
DOMAIN: Final = "androidtv_remote"
CONF_ENABLE_IME: Final = "enable_ime"
CONF_ENABLE_IME_DEFAULT_VALUE: Final = True