Make nullplugin dialog not show up on clicks with buttons other than the left

mouse button.  Bug 270377, patch by Vincent Caron <v.caron@zerodeux.net>,
r=bryner, sr=bzbarsky
This commit is contained in:
bzbarsky%mit.edu 2005-01-20 17:04:20 +00:00
Родитель 3759c8da9d
Коммит f73e193c11
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -467,7 +467,10 @@ xt_event_handler(Widget xt_w, PluginInstance *This, XEvent *xevent, Boolean *b)
drawPixmap(This);
break;
case ButtonRelease:
makeWidget(This);
if (xevent->xbutton.button == Button1)
{
makeWidget(This);
}
break;
default:
break;