aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-07-05 13:19:31 +0000
committernyamatongwe <devnull@localhost>2002-07-05 13:19:31 +0000
commit5ccf53a59d9383dbba88d944a3062753c38d919b (patch)
tree0b8292b9473b6b007ec3ebc77f52d50ad8c10f00
parent4b618a6b83f2eaaba8453b2d48e0372d69820d56 (diff)
downloadscintilla-mirror-5ccf53a59d9383dbba88d944a3062753c38d919b.tar.gz
Removed check that is now redundant.
-rw-r--r--gtk/ScintillaGTK.cxx2
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;