]> git.lyx.org Git - features.git/commitdiff
Fix key code
authorJuergen Spitzmueller <spitz@lyx.org>
Wed, 8 Oct 2014 08:57:58 +0000 (10:57 +0200)
committerJuergen Spitzmueller <spitz@lyx.org>
Wed, 8 Oct 2014 08:57:58 +0000 (10:57 +0200)
src/frontends/qt4/GuiKeySymbol.cpp

index 294faae5bfb0ef98396ed5469c9a62a32b79d12c..54a45166743f5afe59db0efb4e488fa3a358ec83 100644 (file)
@@ -64,7 +64,7 @@ static int string_to_qkey(std::string const & str)
 
        if (str == "Escape") return Qt::Key_Escape;
        if (str == "Tab") return Qt::Key_Tab;
-       if (str == "ISO_Left_Tab") return Qt::Key_Tab;
+       if (str == "ISO_Left_Tab") return Qt::Key_Backtab;
        if (str == "BackSpace") return Qt::Key_Backspace;
        if (str == "Return") return Qt::Key_Return;
        if (str == "KP_Enter") return Qt::Key_Enter; // correct ?