diff options
author | FranklinDM <mrmineshafter17@gmail.com> | 2022-05-03 09:08:25 -0500 |
---|---|---|
committer | Matt A. Tobin <email@mattatobin.com> | 2022-05-03 09:08:30 -0500 |
commit | 9f2be927908e06911cfe65f398de54eeae44783a (patch) | |
tree | 3dea251ed53e8b96c312460e47a1039aba4f2161 | |
parent | 775e9995eb4ad713de1ed80175532d4342515da7 (diff) | |
download | aura-central-9f2be927908e06911cfe65f398de54eeae44783a.tar.gz |
[Components:Handling] Set an icon for the default handler
-rw-r--r-- | components/handling/content/dialog.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/components/handling/content/dialog.js b/components/handling/content/dialog.js index 98a788201..2d93fd60d 100644 --- a/components/handling/content/dialog.js +++ b/components/handling/content/dialog.js @@ -151,6 +151,7 @@ var dialog = { elm.setAttribute("type", "handler"); elm.id = "os-default-handler"; elm.setAttribute("name", this._handlerInfo.defaultDescription); + elm.setAttribute("image", "moz-icon://.exe?size=32"); items.insertBefore(elm, items.firstChild); if (this._handlerInfo.preferredAction == |