From: Jaakko Salli Date: Tue, 1 Sep 2009 14:11:01 +0000 (+0000) Subject: Only respect property's wxPG_PROP_READONLY flag for the 'value' column X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/83110b757032329cb53d23e336ce5bd7468e86d9 Only respect property's wxPG_PROP_READONLY flag for the 'value' column git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@61803 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/propgrid/editors.cpp b/src/propgrid/editors.cpp index d0b43d3822..e0a6d71cf1 100644 --- a/src/propgrid/editors.cpp +++ b/src/propgrid/editors.cpp @@ -1642,7 +1642,7 @@ wxWindow* wxPropertyGrid::GenerateEditorTextCtrl( const wxPoint& pos, int tcFlags = wxTE_PROCESS_ENTER | extraStyle; - if ( prop->HasFlag(wxPG_PROP_READONLY) ) + if ( prop->HasFlag(wxPG_PROP_READONLY) && forColumn == 1 ) tcFlags |= wxTE_READONLY; wxPoint p(pos.x,pos.y);