]> git.saurik.com Git - wxWidgets.git/blobdiff - src/richtext/richtextctrl.cpp
Disable drag and drop if the control is not editable
[wxWidgets.git] / src / richtext / richtextctrl.cpp
index 05b81428377332762bf60750c87383922dbd4fd7..dfd6c701bef4a6fb51fc053c4e3a210cad287bdf 100644 (file)
@@ -564,7 +564,7 @@ void wxRichTextCtrl::OnLeftClick(wxMouseEvent& event)
 
 #if wxUSE_DRAG_AND_DROP
     // If there's no selection, or we're not inside it, this isn't an attempt to initiate Drag'n'Drop
-    if (HasSelection() && GetSelectionRange().ToInternal().Contains(position))
+    if (IsEditable() && HasSelection() && GetSelectionRange().ToInternal().Contains(position))
     {
         // This might be an attempt at initiating Drag'n'Drop. So set the time & flags
         m_preDrag = true;