Disallow OS text selection in atom buffers.

This commit is contained in:
Ashi Krishnan
2018-09-05 17:55:41 -07:00
parent 9c3fecf93d
commit 401b7fe965

View File

@@ -138,6 +138,10 @@ atom-text-editor {
.cursors.blink-off .cursor {
opacity: 0;
}
// Atom manages the selection independent of Blink / the OS. We never want a
// native selection.
user-select: none;
}
atom-text-editor[mini] {