fixing some compile errors

This commit is contained in:
tibbi
2021-12-25 18:22:55 +01:00
parent 7a52955974
commit 7a6f673e1e
2 changed files with 2 additions and 2 deletions

View File

@@ -98,7 +98,7 @@ class MainActivity : SimpleActivity() {
val adjustedPrimaryColor = getAdjustedPrimaryColor() val adjustedPrimaryColor = getAdjustedPrimaryColor()
no_conversations_placeholder_2.setTextColor(adjustedPrimaryColor) no_conversations_placeholder_2.setTextColor(adjustedPrimaryColor)
no_conversations_placeholder_2.underlineText() no_conversations_placeholder_2.underlineText()
conversations_fastscroller.updateColors(adjustedPrimaryColor, adjustedPrimaryColor.getContrastColor()) conversations_fastscroller.updateColors(adjustedPrimaryColor)
checkShortcut() checkShortcut()
} }

View File

@@ -344,7 +344,7 @@ class ThreadActivity : SimpleActivity() {
thread_add_attachment.applyColorFilter(textColor) thread_add_attachment.applyColorFilter(textColor)
val adjustedPrimaryColor = getAdjustedPrimaryColor() val adjustedPrimaryColor = getAdjustedPrimaryColor()
thread_messages_fastscroller.updateColors(adjustedPrimaryColor, adjustedPrimaryColor.getContrastColor()) thread_messages_fastscroller.updateColors(adjustedPrimaryColor)
thread_character_counter.beVisibleIf(config.showCharacterCounter) thread_character_counter.beVisibleIf(config.showCharacterCounter)
thread_character_counter.setTextSize(TypedValue.COMPLEX_UNIT_PX, getTextSize()) thread_character_counter.setTextSize(TypedValue.COMPLEX_UNIT_PX, getTextSize())