This commit is contained in:
Niels Andriesse 2021-06-24 14:26:38 +10:00
parent c0429569db
commit 2082a58e5a
7 changed files with 5 additions and 8 deletions

View File

@ -68,7 +68,6 @@ class ConversationActivityV2 : PassphraseRequiredActionBarActivity(), InputBarDe
// TODO: Selected message background color
// TODO: Overflow menu background + text color
// TODO: Typing indicators
private val adapter by lazy {
val cursor = DatabaseFactory.getMmsSmsDatabase(this).getConversation(threadID)

View File

@ -35,6 +35,6 @@ class BlockedDialog(private val recipient: Recipient) : BaseDialog() {
}
private fun unblock() {
// TODO: Implement
}
}

View File

@ -34,6 +34,6 @@ class DownloadDialog(private val recipient: Recipient) : BaseDialog() {
}
private fun trust() {
// TODO: Implement
}
}

View File

@ -29,6 +29,6 @@ class JoinOpenGroupDialog(private val openGroup: OpenGroupV2) : BaseDialog() {
}
private fun join() {
// TODO: Implement
}
}

View File

@ -16,6 +16,6 @@ class LinkPreviewDialog() : BaseDialog() {
}
private fun enable() {
// TODO: Implement
}
}

View File

@ -25,6 +25,6 @@ class OpenURLDialog(private val url: String) : BaseDialog() {
}
private fun open() {
// TODO: Implement
}
}

View File

@ -35,8 +35,6 @@ import kotlin.math.roundToInt
class VisibleMessageContentView : LinearLayout {
var onContentClick: (() -> Unit)? = null
// TODO: Large emojis
// region Lifecycle
constructor(context: Context) : super(context) { initialize() }
constructor(context: Context, attrs: AttributeSet) : super(context, attrs) { initialize() }