Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yishn committed May 12, 2019
1 parent cfd83c0 commit 4ffee20
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -2452,7 +2452,7 @@ class App extends Component {
this.engineBusySyncing = false

if (showErrorDialog) {
dialog.show(t(err.message), 'warning')
dialog.showMessageBox(t(err.message), 'warning')
} else {
throw err
}
Expand Down
2 changes: 1 addition & 1 deletion src/menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ exports.build = function(props = {}) {
{
label: t('menu.engines', 'S&ynchronize'),
accelerator: 'F6',
click: () => await sabaki.syncEngines({showErrorDialog: true})
click: () => sabaki.syncEngines({showErrorDialog: true})
},
{
label: t('menu.engines', 'Toggle A&nalysis'),
Expand Down

0 comments on commit 4ffee20

Please sign in to comment.