Skip to content
Snippets Groups Projects
Verified Commit 040e799b authored by Janne Mareike Koschinski's avatar Janne Mareike Koschinski
Browse files

Fixes #58

parent bc458a8a
No related branches found
No related tags found
No related merge requests found
Pipeline #
...@@ -161,14 +161,17 @@ class BufferViewConfigFragment : ServiceBoundFragment() { ...@@ -161,14 +161,17 @@ class BufferViewConfigFragment : ServiceBoundFragment() {
bufferSyncer?.let { bufferSyncer?.let {
bufferViewConfig?.orNull()?.insertBufferSorted(info, bufferSyncer) bufferViewConfig?.orNull()?.insertBufferSorted(info, bufferSyncer)
} }
actionMode?.finish()
true true
} }
R.id.action_hide_temp -> { R.id.action_hide_temp -> {
bufferViewConfig?.orNull()?.requestRemoveBuffer(info.bufferId) bufferViewConfig?.orNull()?.requestRemoveBuffer(info.bufferId)
actionMode?.finish()
true true
} }
R.id.action_hide_perm -> { R.id.action_hide_perm -> {
bufferViewConfig?.orNull()?.requestRemoveBufferPermanently(info.bufferId) bufferViewConfig?.orNull()?.requestRemoveBufferPermanently(info.bufferId)
actionMode?.finish()
true true
} }
else -> false else -> false
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment