diff options
| author | nyamatongwe <unknown> | 2002-07-05 13:19:31 +0000 |
|---|---|---|
| committer | nyamatongwe <unknown> | 2002-07-05 13:19:31 +0000 |
| commit | 8d695deb2c3ea07393b689bce77e46094cbe6347 (patch) | |
| tree | 0b8292b9473b6b007ec3ebc77f52d50ad8c10f00 | |
| parent | 521ce6c9c3abd57a3df3d5c5ce670fc9606e3317 (diff) | |
| download | scintilla-mirror-8d695deb2c3ea07393b689bce77e46094cbe6347.tar.gz | |
Removed check that is now redundant.
| -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 386a0bff4..c8a753995 100644 --- a/gtk/ScintillaGTK.cxx +++ b/gtk/ScintillaGTK.cxx @@ -1099,7 +1099,7 @@ gint ScintillaGTK::PressThis(GdkEventButton *event) { SetSelection(pos, pos); gtk_selection_convert(GTK_WIDGET(PWidget(wMain)), GDK_SELECTION_PRIMARY, gdk_atom_intern("STRING", FALSE), event->time); - } else if (event->button == 3 && displayPopupMenu) { + } else if (event->button == 3) { // PopUp menu // Convert to screen int ox = 0; |
