diff options
-rw-r--r-- | dw/fltkviewbase.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/dw/fltkviewbase.cc b/dw/fltkviewbase.cc index 02cccb2d..3063cf73 100644 --- a/dw/fltkviewbase.cc +++ b/dw/fltkviewbase.cc @@ -238,7 +238,8 @@ int FltkViewBase::handle (int event) _MSG("PUSH => %s\n", processed ? "true" : "false"); if (processed) { /* pressed dw content; give focus to the view */ - Fl::focus(this); + if (Fl::event_button() != FL_RIGHT_MOUSE) + Fl::focus(this); return true; } break; |