diff options
author | nyamatongwe <devnull@localhost> | 2007-05-27 07:32:54 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2007-05-27 07:32:54 +0000 |
commit | 5a69ddeca6d1cc05fa71670c4f49dbd421e8c9dc (patch) | |
tree | e15be08b00b6705564940c70509bc186a0c15dfa | |
parent | a7e855733d2a655fede13da970590703e170c629 (diff) | |
download | scintilla-mirror-5a69ddeca6d1cc05fa71670c4f49dbd421e8c9dc.tar.gz |
Fix to primary selection to not include URI format.
-rw-r--r-- | gtk/ScintillaGTK.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/ScintillaGTK.cxx b/gtk/ScintillaGTK.cxx index 6ad5a16bf..71c7b342f 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -770,7 +770,7 @@ void ScintillaGTK::Initialise() { gtk_widget_grab_focus(PWidget(wMain)); gtk_selection_add_targets(GTK_WIDGET(PWidget(wMain)), GDK_SELECTION_PRIMARY, - clipboardPasteTargets, nClipboardPasteTargets); + clipboardCopyTargets, nClipboardCopyTargets); #ifndef USE_GTK_CLIPBOARD gtk_selection_add_targets(GTK_WIDGET(PWidget(wMain)), atomClipboard, |