currenlty clearing the Clipboard when you do this.
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@18550
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
// This is called by the Editor base class whenever something is selected
void ScintillaWX::ClaimSelection() {
+#if 0
+ // Until wxGTK is able to support using both the primary selection and the
+ // clipboard at the same time I think it causes more problems than it is
+ // worth to implement this method. Selecting text should not clear the
+ // clipboard. --Robin
#ifdef __WXGTK__
// Put the selected text in the PRIMARY selection
if (currentPos != anchor) {
}
}
#endif
+#endif
}
// This is called by the Editor base class whenever something is selected
void ScintillaWX::ClaimSelection() {
+#if 0
+ // Until wxGTK is able to support using both the primary selection and the
+ // clipboard at the same time I think it causes more problems than it is
+ // worth to implement this method. Selecting text should not clear the
+ // clipboard. --Robin
#ifdef __WXGTK__
// Put the selected text in the PRIMARY selection
if (currentPos != anchor) {
}
}
#endif
+#endif
}