> On Tue, 11 Nov 2003 [EMAIL PROTECTED] wrote:
>
> > Hi All!
> > I have 4.0b4, compiled from source, on SuSE linux 8.0. I am having
trouble
> > with the F8 menu not showing up... i tried doing a manual modification
of
> > the .Xresources file to put in a custom menu (i used the sample), and it
> > did not work in 4.0b4, but worked in 3.3.7. I also tried manually
> > specifying different F-keys, no luck there either. any ideas?

This sounds like a bug in the 4.0b4 unix viewer whereby the F8 menu won't
pop up
when either caps lock or num lock are on.  The following simple patch should
fix it:


*** CConn.cxx.orig Thu Sep  4 14:04:40 2003
--- CConn.cxx Fri Oct 24 10:29:45 2003
***************
*** 134,140 ****
    case KeyPress:
    case KeyRelease:
      XLookupString(&ev->xkey, str, 256, &ks, NULL);
!     if (ks == menuKeysym && ev->xkey.state == 0) {
        if (w == desktop && ev->type == KeyPress) {
          showMenu(ev->xkey.x_root, ev->xkey.y_root);
          break;
--- 134,140 ----
    case KeyPress:
    case KeyRelease:
      XLookupString(&ev->xkey, str, 256, &ks, NULL);
!     if (ks == menuKeysym && (ev->xkey.state & (ShiftMask|ControlMask)) ==
0) {
        if (w == desktop && ev->type == KeyPress) {
          showMenu(ev->xkey.x_root, ev->xkey.y_root);
          break;


Cheers

Tristan
_______________________________________________
VNC-List mailing list
[EMAIL PROTECTED]
To remove yourself from the list visit:
http://www.realvnc.com/mailman/listinfo/vnc-list

Reply via email to