diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2021-04-21 16:35:47 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2021-04-21 17:17:38 +0530 |
commit | d02543639bc7c92c2467ed874540391890f5cd11 (patch) | |
tree | b20d56a96bb5aa833914921a92cbe585259e739a | |
parent | e1e16cdf3b915853a09c5ae7814ce2e353cbe8bd (diff) |
ui: reduce size of QS tile drawable
This will be rendered on an even smaller scale on devices, but
400dp x 400dp was simply too big and could cause performance issues.
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
-rw-r--r-- | ui/src/main/res/drawable/ic_tile.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/src/main/res/drawable/ic_tile.xml b/ui/src/main/res/drawable/ic_tile.xml index f5774968..6232123f 100644 --- a/ui/src/main/res/drawable/ic_tile.xml +++ b/ui/src/main/res/drawable/ic_tile.xml @@ -1,6 +1,6 @@ <vector xmlns:android="http://schemas.android.com/apk/res/android" - android:width="400dp" - android:height="400dp" + android:width="200dp" + android:height="200dp" android:viewportWidth="400.0" android:viewportHeight="400.0"> <path |