change cw icon color on on/off (#1181)
This commit is contained in:
parent
d4816d8cc1
commit
8355c9bba9
@ -1482,14 +1482,19 @@ public final class ComposeActivity
|
||||
private void showContentWarning(boolean show) {
|
||||
statusHideText = show;
|
||||
TransitionManager.beginDelayedTransition((ViewGroup)contentWarningBar.getParent());
|
||||
int color;
|
||||
if (show) {
|
||||
statusMarkSensitive = true;
|
||||
contentWarningBar.setVisibility(View.VISIBLE);
|
||||
contentWarningEditor.setSelection(contentWarningEditor.getText().length());
|
||||
contentWarningEditor.requestFocus();
|
||||
color = ContextCompat.getColor(this, R.color.tusky_blue);
|
||||
} else {
|
||||
contentWarningBar.setVisibility(View.GONE);
|
||||
color = ThemeUtils.getColor(this, android.R.attr.textColorTertiary);
|
||||
}
|
||||
contentWarningButton.getDrawable().setColorFilter(color, PorterDuff.Mode.SRC_IN);
|
||||
|
||||
updateHideMediaToggle();
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user