Bug 1129401 - Can't copy URL by right clicking it the first time, r=Mossop.

This commit is contained in:
Florian Quèze 2015-02-11 20:47:27 +01:00
Родитель d8d85982f0
Коммит 64fe7a6944
1 изменённых файлов: 3 добавлений и 2 удалений

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

@ -241,9 +241,10 @@
#ifndef XP_WIN
<handler event="contextmenu">
// Only care about context clicks on the input field itself
if (event.target != this.inputField)
// Only care about context clicks on the textbox itself.
if (event.target != this)
return;
if (!event.button) // context menu opened via keyboard shortcut
return;
this._maybeSelectAll();