diff options
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | android/src/main/res/layout/main.xml | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d8eda8525b..839a1a6542 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -32,6 +32,8 @@ Line wrap the file at 100 chars. Th - Show the remaining account time in the Settings screen in days if it's less than 3 months. - Prevent commands to connect or disconnect to be sent when the device is locked. - Make all screens scrollable to better handle small screens and split-screen mode. +- Ignore touch events when another view is shown on top of the app in order to prevent tapjacking + attacks. #### Linux - Send an ICMP reject message or TCP reset packet when blocking outgoing packets to prevent diff --git a/android/src/main/res/layout/main.xml b/android/src/main/res/layout/main.xml index 57a99f2668..7839409631 100644 --- a/android/src/main/res/layout/main.xml +++ b/android/src/main/res/layout/main.xml @@ -1,4 +1,5 @@ <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/main_fragment" android:layout_width="match_parent" - android:layout_height="match_parent" /> + android:layout_height="match_parent" + android:filterTouchesWhenObscured="true" /> |
