Merge pull request #1065 from session-foundation/release/1.22.0

Release/1.22.0
pull/1713/head
SessionHero01 3 weeks ago committed by GitHub
commit dea57ae39a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -15,8 +15,8 @@ configurations.configureEach {
exclude module: "commons-logging"
}
def canonicalVersionCode = 401
def canonicalVersionName = "1.21.3"
def canonicalVersionCode = 402
def canonicalVersionName = "1.22.0"
def postFixSize = 10
def abiPostFix = ['armeabi-v7a' : 1,

@ -430,6 +430,12 @@ class SettingsActivity : ScreenLockActionBarActivity() {
override fun onCreateActionMode(mode: ActionMode, menu: Menu): Boolean {
mode.title = getString(R.string.displayNameEnter)
mode.menuInflater.inflate(R.menu.menu_apply, menu)
menu.findItem(R.id.applyButton)?.let { menuItem ->
val themeColor = getColorFromAttr(android.R.attr.textColorPrimary)
menuItem.icon?.setTint(themeColor)
}
this@SettingsActivity.displayNameEditActionMode = mode
return true
}

@ -7,7 +7,7 @@
android:title="@string/set"
android:id="@+id/applyButton"
android:icon="@drawable/ic_check"
app:iconTint="?colorControlNormal"
app:iconTint="?android:textColorPrimary"
app:showAsAction="always|withText"/>
</menu>

Loading…
Cancel
Save