Revert "Adapt default shortcut for completion on Mac."

This reverts commit 497e514148.

I'm proved wrong by other mac installations.
This commit is contained in:
con
2010-03-18 12:18:57 +01:00
parent e50eed8111
commit 8ccc726eb5

View File

@@ -127,7 +127,7 @@ bool TextEditorPlugin::initialize(const QStringList &arguments, QString *errorMe
#ifndef Q_WS_MAC
command->setDefaultKeySequence(QKeySequence(tr("Ctrl+Space")));
#else
command->setDefaultKeySequence(QKeySequence(tr("Alt+Space")));
command->setDefaultKeySequence(QKeySequence(tr("Meta+Space")));
#endif
connect(completionShortcut, SIGNAL(activated()), this, SLOT(invokeCompletion()));