Skip to content
This repository was archived by the owner on Sep 6, 2021. It is now read-only.

Commit f4e41e7

Browse files
committed
Merge pull request #7147 from adobe/pflynn/reverse-filter-buttons
Fix bug #7143 (Edit Filter dialog's dismissal buttons are in wrong order)
2 parents 5203185 + 7b43448 commit f4e41e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/search/FileFilters.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ define(function (require, exports, module) {
7171
var html = StringUtils.format(Strings.FILE_FILTER_INSTRUCTIONS, brackets.config.glob_help_url) +
7272
"<textarea class='exclusions-editor'></textarea>";
7373
var buttons = [
74-
{ className : Dialogs.DIALOG_BTN_CLASS_PRIMARY, id: Dialogs.DIALOG_BTN_OK, text: Strings.OK },
75-
{ className : Dialogs.DIALOG_BTN_CLASS_NORMAL, id: Dialogs.DIALOG_BTN_CANCEL, text: Strings.CANCEL }
74+
{ className : Dialogs.DIALOG_BTN_CLASS_NORMAL, id: Dialogs.DIALOG_BTN_CANCEL, text: Strings.CANCEL },
75+
{ className : Dialogs.DIALOG_BTN_CLASS_PRIMARY, id: Dialogs.DIALOG_BTN_OK, text: Strings.OK }
7676
];
7777
var dialog = Dialogs.showModalDialog(DefaultDialogs.DIALOG_ID_INFO, Strings.FILE_FILTER_DIALOG, html, buttons);
7878

0 commit comments

Comments
 (0)