Bug 182997 patch by johann.petrak@chello.at r=timeless sr=jag showItem("context-copy") should check isTextSelected and onTextInput

This commit is contained in:
cbiesinger%web.de 2003-03-12 15:43:08 +00:00
Родитель e708301bae
Коммит d6365ea5e5
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -185,7 +185,7 @@ nsContextMenu.prototype = {
this.showItem( "context-redo", this.onTextInput );
this.showItem( "context-sep-undo", this.onTextInput );
this.showItem( "context-cut", this.onTextInput );
this.showItem( "context-copy", true );
this.showItem( "context-copy", this.isTextSelected || this.onTextInput);
this.showItem( "context-paste", this.onTextInput );
this.showItem( "context-delete", this.onTextInput );
this.showItem( "context-sep-paste", this.onTextInput );