File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
java/org/thoughtcrime/securesms/preferences Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,8 @@ configurations.configureEach {
15
15
exclude module : " commons-logging"
16
16
}
17
17
18
- def canonicalVersionCode = 401
19
- def canonicalVersionName = " 1.21.3 "
18
+ def canonicalVersionCode = 402
19
+ def canonicalVersionName = " 1.22.0 "
20
20
21
21
def postFixSize = 10
22
22
def abiPostFix = [' armeabi-v7a' : 1 ,
Original file line number Diff line number Diff line change @@ -430,6 +430,12 @@ class SettingsActivity : ScreenLockActionBarActivity() {
430
430
override fun onCreateActionMode (mode : ActionMode , menu : Menu ): Boolean {
431
431
mode.title = getString(R .string.displayNameEnter)
432
432
mode.menuInflater.inflate(R .menu.menu_apply, menu)
433
+
434
+ menu.findItem(R .id.applyButton)?.let { menuItem ->
435
+ val themeColor = getColorFromAttr(android.R .attr.textColorPrimary)
436
+ menuItem.icon?.setTint(themeColor)
437
+ }
438
+
433
439
this @SettingsActivity.displayNameEditActionMode = mode
434
440
return true
435
441
}
Original file line number Diff line number Diff line change 7
7
android : title =" @string/set"
8
8
android : id =" @+id/applyButton"
9
9
android : icon =" @drawable/ic_check"
10
- app : iconTint =" ?colorControlNormal "
10
+ app : iconTint =" ?android:textColorPrimary "
11
11
app : showAsAction =" always|withText" />
12
12
13
13
</menu >
You can’t perform that action at this time.
0 commit comments