Rearrange buttons in the confirmation dialog to choose how to open bookmark folder.
Due to the https://bugzilla.mozilla.org/show_bug.cgi?id=345067 now we must put "cancel" as tne index 1.
This commit is contained in:
parent
fe0027a8f5
commit
d66e4a0c0f
@ -326,11 +326,11 @@ var TreeStyleTabBase = inherit(TreeStyleTabConstants, {
|
|||||||
utils.treeBundle.getString('openGroupBookmarkBehavior.title'),
|
utils.treeBundle.getString('openGroupBookmarkBehavior.title'),
|
||||||
utils.treeBundle.getString('openGroupBookmarkBehavior.text'),
|
utils.treeBundle.getString('openGroupBookmarkBehavior.text'),
|
||||||
(Services.prompt.BUTTON_TITLE_IS_STRING * Services.prompt.BUTTON_POS_0) |
|
(Services.prompt.BUTTON_TITLE_IS_STRING * Services.prompt.BUTTON_POS_0) |
|
||||||
(Services.prompt.BUTTON_TITLE_IS_STRING * Services.prompt.BUTTON_POS_1) |
|
(Services.prompt.BUTTON_TITLE_CANCEL * Services.prompt.BUTTON_POS_1) |
|
||||||
(Services.prompt.BUTTON_TITLE_CANCEL * Services.prompt.BUTTON_POS_2),
|
(Services.prompt.BUTTON_TITLE_IS_STRING * Services.prompt.BUTTON_POS_2),
|
||||||
utils.treeBundle.getString('openGroupBookmarkBehavior.subTree'),
|
utils.treeBundle.getString('openGroupBookmarkBehavior.subTree'),
|
||||||
utils.treeBundle.getString('openGroupBookmarkBehavior.separate'),
|
|
||||||
'',
|
'',
|
||||||
|
utils.treeBundle.getString('openGroupBookmarkBehavior.separate'),
|
||||||
utils.treeBundle.getString('openGroupBookmarkBehavior.never'),
|
utils.treeBundle.getString('openGroupBookmarkBehavior.never'),
|
||||||
checked
|
checked
|
||||||
);
|
);
|
||||||
@ -340,8 +340,8 @@ var TreeStyleTabBase = inherit(TreeStyleTabConstants, {
|
|||||||
|
|
||||||
var behaviors = [
|
var behaviors = [
|
||||||
this.kGROUP_BOOKMARK_SUBTREE | dummyTabFlag,
|
this.kGROUP_BOOKMARK_SUBTREE | dummyTabFlag,
|
||||||
this.kGROUP_BOOKMARK_SEPARATE,
|
this.kGROUP_BOOKMARK_CANCEL,
|
||||||
this.kGROUP_BOOKMARK_CANCEL
|
this.kGROUP_BOOKMARK_SEPARATE
|
||||||
];
|
];
|
||||||
behavior = behaviors[button];
|
behavior = behaviors[button];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user