We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 94e4f56 commit feaf951Copy full SHA for feaf951
Source/Classes/SLKTextViewController.m
@@ -656,7 +656,14 @@ - (void)textSelectionDidChange
656
}
657
658
// Skips if the loupe is visible or if there is a real text selection
659
- if (self.textView.isLoupeVisible || self.textView.isTrackpadEnabled || self.textView.selectedRange.length > 0) {
+ if (self.textView.isLoupeVisible || self.textView.isTrackpadEnabled) {
660
+ return;
661
+ }
662
+
663
+ if (self.textView.selectedRange.length > 0) {
664
+ if (self.isAutoCompleting) {
665
+ [self cancelAutoCompletion];
666
667
return;
668
669
0 commit comments