mirror of
https://github.com/levinsv/pgadmin3.git
synced 2026-05-15 14:15:49 -06:00
fix
This commit is contained in:
parent
9571d4527a
commit
903fd8ea9e
1 changed files with 2 additions and 2 deletions
|
|
@ -193,9 +193,9 @@ public:
|
|||
if (event.GetKeyCode() == WXK_HOME) htmlWindow->ScrollPages(-1000);
|
||||
if (event.GetKeyCode() == WXK_END) htmlWindow->ScrollPages(1000);
|
||||
//std::cout << "key code " << event.GetKeyCode() << " " << std::endl;
|
||||
if (event.GetKeyCode() == 'C') {
|
||||
if (event.GetKeyCode() == 'C' && hist.size()>0) {
|
||||
|
||||
if (hist.size()>0 && wxTheClipboard->Open())
|
||||
if (wxTheClipboard->Open())
|
||||
{
|
||||
wxString h=hist[hist.size()-1];
|
||||
// Добавляем данные (можно добавить несколько форматов, если нужно)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue