diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-07-16 08:16:07 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-07-16 08:16:07 +0200 |
commit | 57e08f8dd67870662c2021fd7603a966bed44343 (patch) | |
tree | 918ac5500f83f733da73481586c8b72a510687ac /toolkit/mozapps/handling/content | |
parent | 422a3cda0caacd3b9397c5eaf1af0262f02308f8 (diff) | |
download | UXP-57e08f8dd67870662c2021fd7603a966bed44343.tar UXP-57e08f8dd67870662c2021fd7603a966bed44343.tar.gz UXP-57e08f8dd67870662c2021fd7603a966bed44343.tar.lz UXP-57e08f8dd67870662c2021fd7603a966bed44343.tar.xz UXP-57e08f8dd67870662c2021fd7603a966bed44343.zip |
Use expected dialog button ordering in Launch Application dialog.
This resolves #639.
Diffstat (limited to 'toolkit/mozapps/handling/content')
-rw-r--r-- | toolkit/mozapps/handling/content/dialog.xul | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/toolkit/mozapps/handling/content/dialog.xul b/toolkit/mozapps/handling/content/dialog.xul index f73ce6d7f..2e2dab4e4 100644 --- a/toolkit/mozapps/handling/content/dialog.xul +++ b/toolkit/mozapps/handling/content/dialog.xul @@ -45,8 +45,13 @@ <description id="remember-text"/> <hbox class="dialog-button-box" pack="end"> +#ifdef XP_WIN + <button dlgtype="accept" label="&accept;" icon="open" class="dialog-button"/> + <button dlgtype="cancel" icon="cancel" class="dialog-button"/> +#else <button dlgtype="cancel" icon="cancel" class="dialog-button"/> <button dlgtype="accept" label="&accept;" icon="open" class="dialog-button"/> +#endif </hbox> </dialog> |