Bug 469481 - Copy image doesn't copy image (nor its location)

r+sr=neil a-seamonkey2.0=iann
This commit is contained in:
Jens Hatlak 2009-09-21 20:40:11 +02:00
Родитель 97199a7346
Коммит 1c4c78497b
3 изменённых файлов: 15 добавлений и 0 удалений

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

@ -320,6 +320,8 @@ nsContextMenu.prototype = {
// Copy image location depends on whether we're on an image.
this.showItem( "context-copyimage", this.onImage );
// Copy Image Location (regression fix for bug 469481)
this.showItem( "context-copyimageurl", this.onImage );
this.showItem( "context-copyvideourl", this.onVideo );
this.showItem( "context-copyaudiourl", this.onAudio );
if (this.onVideo)

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

@ -48,4 +48,13 @@
command="cmd_openHelp"/>
</keyset>
<!-- Copy Image Location (regression fix for bug 469481) -->
<popup id="contentAreaContextMenu">
<menuitem id="context-copyimageurl"
label="&copyImageURLCmd.label;"
accesskey="&copyImageURLCmd.accesskey;"
insertafter="context-copyimage"
oncommand="gContextMenu.copyMediaLocation();"/>
</popup>
</overlay>

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

@ -27,3 +27,7 @@
<!ENTITY ctrlKey.label "Ctrl">
<!ENTITY altKey.label "Alt">
<!ENTITY shiftKey.label "Shift">
<!-- Copy Image Location (regression fix for bug 469481) -->
<!ENTITY copyImageURLCmd.label "Copy Image Location">
<!ENTITY copyImageURLCmd.accesskey "y">