Skip to content

Commit

Permalink
uniform icon size in configure screen
Browse files Browse the repository at this point in the history
  • Loading branch information
hussainmohd-a committed Jul 18, 2023
1 parent acc2ddc commit 7383bf7
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 20 deletions.
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/dns_home_screen.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:width="16dp"
android:height="16dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/firewall_home_screen.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:width="16dp"
android:height="16dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/ic_network_tunnel.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:width="16dp"
android:height="16dp"
android:viewportWidth="32"
android:viewportHeight="32">
<path
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/ic_other_settings.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:width="16dp"
android:height="16dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
Expand Down
4 changes: 2 additions & 2 deletions app/src/main/res/drawable/ic_proxy.xml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:width="16dp"
android:height="16dp"
android:viewportWidth="24"
android:viewportHeight="24">
<path
Expand Down
20 changes: 10 additions & 10 deletions app/src/main/res/layout/fragment_configure.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@

<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/fs_network_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_alignParentStart="true"
android:layout_centerInParent="true"
android:src="@drawable/ic_network_tunnel" />
Expand Down Expand Up @@ -94,8 +94,8 @@

<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/fs_dns_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_alignParentStart="true"
android:layout_centerInParent="true"
android:src="@drawable/dns_home_screen" />
Expand Down Expand Up @@ -137,8 +137,8 @@

<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/fs_firewall_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_alignParentStart="true"
android:layout_centerInParent="true"
android:src="@drawable/firewall_home_screen" />
Expand Down Expand Up @@ -180,8 +180,8 @@

<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/fs_proxy_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_alignParentStart="true"
android:layout_centerInParent="true"
android:src="@drawable/ic_proxy" />
Expand Down Expand Up @@ -224,8 +224,8 @@

<androidx.appcompat.widget.AppCompatImageView
android:id="@+id/fs_others_icon"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_width="24dp"
android:layout_height="24dp"
android:layout_alignParentStart="true"
android:layout_centerInParent="true"
android:src="@drawable/ic_other_settings" />
Expand Down

0 comments on commit 7383bf7

Please sign in to comment.