From: Julian Smart Date: Tue, 3 Jan 2012 15:24:20 +0000 (+0000) Subject: Disable drag and drop if the control is not editable X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/b33e0c2c5b51be1154da8f57dc808d2f1dd8ac45?ds=inline Disable drag and drop if the control is not editable git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@70254 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/richtext/richtextctrl.cpp b/src/richtext/richtextctrl.cpp index 05b8142837..dfd6c701be 100644 --- a/src/richtext/richtextctrl.cpp +++ b/src/richtext/richtextctrl.cpp @@ -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;