Hi Dave,

I attached a patch for #197.
Please be so kind to review, if this was all about this issue.

Regards
Steffen

diff --git a/pgadmin/frm/frmEditGrid.cpp b/pgadmin/frm/frmEditGrid.cpp
index 67a28e9..d8c9e68 100644
--- a/pgadmin/frm/frmEditGrid.cpp
+++ b/pgadmin/frm/frmEditGrid.cpp
@@ -716,6 +716,11 @@ void frmEditGrid::OnPaste(wxCommandEvent &ev)
                     else
                         boolEd->Set3StateValue(wxCHK_UNDETERMINED);
                 }
+                else if (ed->IsKindOf(CLASSINFO(wxTextCtrl)))
+                               {
+                                       wxTextCtrl *txtEd = (wxTextCtrl *)ed;
+                                       txtEd->SetValue(data.GetText());
+                               }
             }  
             wxTheClipboard->Close();
         }
-- 
Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers

Reply via email to