From c96bdb0d285883a82f94bd08da0b77321b26cd3d Mon Sep 17 00:00:00 2001 From: Mastermindzh Date: Fri, 20 Jan 2023 21:57:41 +0100 Subject: [PATCH] fix: Updated shortcut hint on the menubar to reflect the new shortcut. fixes #174 --- CHANGELOG.md | 4 ++++ src/scripts/menu.js | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad19ee4..ecb0a04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 4.4.0 + +- Updated shortcut hint on the menubar to reflect the new `ctrl+=` shortcut. + ## 4.3.1 - fix: App always requests a default-url-handler-scheme change on start diff --git a/src/scripts/menu.js b/src/scripts/menu.js index 886684d..b2274bb 100644 --- a/src/scripts/menu.js +++ b/src/scripts/menu.js @@ -8,7 +8,7 @@ const settingsMenuEntry = { click() { showSettingsWindow(); }, - accelerator: "Control+/", + accelerator: "Control+=", }; const quitMenuEntry = {