diff --git a/apps/spreadsheeteditor/main/app/controller/DataTab.js b/apps/spreadsheeteditor/main/app/controller/DataTab.js index 0ed66927f1..307010bd4b 100644 --- a/apps/spreadsheeteditor/main/app/controller/DataTab.js +++ b/apps/spreadsheeteditor/main/app/controller/DataTab.js @@ -362,7 +362,7 @@ define([ title: this.toolbar.txtSorting, msg: this.toolbar.txtExpandSort, buttons: [ {caption: this.toolbar.txtExpand, primary: true, value: 'expand'}, - {caption: this.toolbar.txtSortSelected, primary: true, value: 'sort'}, + {caption: this.toolbar.txtSortSelected, value: 'sort'}, 'cancel'], callback: function(btn){ if (btn == 'expand' || btn == 'sort') { @@ -437,7 +437,7 @@ define([ title: this.txtRemDuplicates, msg: this.txtExpandRemDuplicates, buttons: [ {caption: this.txtExpand, primary: true, value: 'expand'}, - {caption: this.txtRemSelected, primary: true, value: 'remove'}, + {caption: this.txtRemSelected, value: 'remove'}, 'cancel'], callback: function(btn){ if (btn == 'expand' || btn == 'remove') { diff --git a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js index be7bcee6b2..47a11a21bd 100644 --- a/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js +++ b/apps/spreadsheeteditor/main/app/controller/DocumentHolder.js @@ -516,7 +516,7 @@ define([ title: this.txtSorting, msg: this.txtExpandSort, buttons: [ {caption: this.txtExpand, primary: true, value: 'expand'}, - {caption: this.txtSortSelected, primary: true, value: 'sort'}, + {caption: this.txtSortSelected, value: 'sort'}, 'cancel'], callback: _.bind(function(btn){ if (btn == 'expand' || btn == 'sort') { diff --git a/apps/spreadsheeteditor/main/app/controller/Toolbar.js b/apps/spreadsheeteditor/main/app/controller/Toolbar.js index b1c89b4d48..351559ae78 100644 --- a/apps/spreadsheeteditor/main/app/controller/Toolbar.js +++ b/apps/spreadsheeteditor/main/app/controller/Toolbar.js @@ -1382,7 +1382,7 @@ define([ title: this.txtSorting, msg: this.txtExpandSort, buttons: [ {caption: this.txtExpand, primary: true, value: 'expand'}, - {caption: this.txtSortSelected, primary: true, value: 'sort'}, + {caption: this.txtSortSelected, value: 'sort'}, 'cancel'], callback: function(btn){ if (btn == 'expand' || btn == 'sort') {