Commit 21a34e7e authored by Max Lv's avatar Max Lv

Fix #714

parent 3f201eb2
addSbtPlugin("org.scala-android" % "sbt-android" % "1.6.3") addSbtPlugin("org.scala-android" % "sbt-android" % "1.6.4")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.10") addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.1.10")
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24.0"
android:viewportHeight="24.0">
<path
android:fillColor="#FFFFFFFF"
android:pathData="M7,10l5,5 5,-5z"/>
</vector>
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
<resources> <resources>
<string name="app_name">Shadowsocks</string> <string name="app_name">Shadowsocks</string>
<string name="screen_name" translatable="false">shadowsocks</string> <string name="screen_name" translatable="false">shadowsocks</string>
<!-- global/misc category --> <!-- global/misc category -->
<string name="misc_cat">Misc</string> <string name="misc_cat">Misc</string>
......
...@@ -369,6 +369,7 @@ class Shadowsocks extends AppCompatActivity with ServiceBoundContext { ...@@ -369,6 +369,7 @@ class Shadowsocks extends AppCompatActivity with ServiceBoundContext {
typedArray.recycle typedArray.recycle
val tf = Typefaces.get(this, "fonts/Iceland.ttf") val tf = Typefaces.get(this, "fonts/Iceland.ttf")
if (tf != null) title.setTypeface(tf) if (tf != null) title.setTypeface(tf)
title.setCompoundDrawablesWithIntrinsicBounds(0, 0, R.drawable.ic_arrow_drop_down, 0)
stat = findViewById(R.id.stat) stat = findViewById(R.id.stat)
connectionTestText = findViewById(R.id.connection_test).asInstanceOf[TextView] connectionTestText = findViewById(R.id.connection_test).asInstanceOf[TextView]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment