mirror of
https://github.com/leozide/leocad
synced 2024-11-17 07:47:55 +01:00
Fixed loading mouse shortcuts. Fixes #107.
This commit is contained in:
parent
f2560c18e0
commit
d263ce812c
1 changed files with 1 additions and 1 deletions
|
@ -205,7 +205,7 @@ bool lcMouseShortcuts::Load(const QStringList& Shortcuts)
|
|||
|
||||
for (const QString& Shortcut : Shortcuts)
|
||||
{
|
||||
QKeySequence KeySequence(Shortcut.mid(Equals + 1));
|
||||
QKeySequence KeySequence(Shortcut);
|
||||
|
||||
if (KeySequence.isEmpty())
|
||||
continue;
|
||||
|
|
Loading…
Reference in a new issue