diff options
author | nyamatongwe <unknown> | 2007-05-27 07:32:54 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2007-05-27 07:32:54 +0000 |
commit | 38ae0852c15b8c2475f5f78b4e678379ce0be3de (patch) | |
tree | e15be08b00b6705564940c70509bc186a0c15dfa | |
parent | 692a86ed6a5f885a2c358880c1b69a4995902eed (diff) | |
download | scintilla-mirror-38ae0852c15b8c2475f5f78b4e678379ce0be3de.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, |