Skip to content

Commit

Permalink
fix(Windows): Fix impossible Ctrl+10 Shortcut
Browse files Browse the repository at this point in the history
Closes #1091
  • Loading branch information
adlk committed Dec 1, 2018
1 parent d450959 commit 0db7c12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Menu.js
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@ export default class FranzMenu {
if (this.stores.user.isLoggedIn) {
return services.map((service, i) => ({
label: this._getServiceName(service),
accelerator: i <= 9 ? `${cmdKey}+${i + 1}` : null,
accelerator: i < 9 ? `${cmdKey}+${i + 1}` : null,
type: 'radio',
checked: service.isActive,
click: () => {
Expand Down

0 comments on commit 0db7c12

Please sign in to comment.