actually register NSTextViewDidChangeSelectionNotification

This commit is contained in:
Riccardo Mottola 2021-08-04 00:53:34 +02:00
parent 25f423bebd
commit f9d8e56a2e

View file

@ -180,6 +180,12 @@
name:NSTextDidChangeNotification
object:ev];
[[NSNotificationCenter defaultCenter]
addObserver:self
selector:@selector(textViewDidChangeSelection:)
name:NSTextViewDidChangeSelectionNotification
object:ev];
return ev;
}