nuttyartist / notes

Fast and beautiful note-taking app written in C++. Write down your thoughts.
https://notes-foss.com
Mozilla Public License 2.0
3.72k stars 326 forks source link

The global shortcut to summon Notes doesn't work on Windows 11 #475

Closed guihkx closed 1 year ago

guihkx commented 1 year ago

Pressing Win+N pops up their Notification Center instead:

image

How about we change it to Win+Shift+N instead? Like we do for Linux/FreeBSD?

https://github.com/nuttyartist/notes/blob/06e8f849b914db679ce64a78bd73d12681eed271/src/mainwindow.cpp#L508-L509

By the way, if we're going to change it, we should probably use something like:

#if (defined(Q_OS_UNIX) && !defined(Q_OS_MAC)) || defined(Q_OS_WIN)

Right?