File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
app/src/main/kotlin/com/simplemobiletools/notes/pro/activities Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ class MainActivity : SimpleActivity() {
240
240
super .onActionModeStarted(mode)
241
241
if (wasInit) {
242
242
currentNotesView()?.apply {
243
- if (config.clickableLinks || movementMethod is LinkMovementMethod ) {
243
+ if (config.clickableLinks || movementMethod is LinkMovementMethod || movementMethod is MyMovementMethod ) {
244
244
movementMethod = ArrowKeyMovementMethod .getInstance()
245
245
noteViewWithTextSelected = this
246
246
}
@@ -251,7 +251,7 @@ class MainActivity : SimpleActivity() {
251
251
override fun onActionModeFinished (mode : ActionMode ? ) {
252
252
super .onActionModeFinished(mode)
253
253
if (config.clickableLinks) {
254
- noteViewWithTextSelected?.movementMethod = LinkMovementMethod .getInstance()
254
+ noteViewWithTextSelected?.movementMethod = MyMovementMethod .getInstance()
255
255
}
256
256
}
257
257
You can’t perform that action at this time.
0 commit comments