Skip to content
Snippets Groups Projects
Commit aa621f60 authored by yanmorin's avatar yanmorin
Browse files

Support @ and : in data entry ;p (error with shift as a character)
parent b0862568
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,6 @@ ...@@ -26,7 +26,6 @@
#include "Request.hpp" #include "Request.hpp"
#include "ObjectFactory.hpp" #include "ObjectFactory.hpp"
class AnswerReceiver;
class Call; class Call;
class SessionIO; class SessionIO;
......
...@@ -160,7 +160,7 @@ SFLPhoneWindow::keyPressEvent(QKeyEvent *e) { ...@@ -160,7 +160,7 @@ SFLPhoneWindow::keyPressEvent(QKeyEvent *e) {
// Misc. key // Misc. key
if (e->state() & Qt::ControlButton || e->key() == Qt::Key_Control) { if (e->state() & Qt::ControlButton || e->key() == Qt::Key_Control) {
emit shortcutPressed(e); emit shortcutPressed(e);
} else { } else if (e->key() != Qt::Key_Shift) {
emit keyPressed(Qt::Key(e->key())); emit keyPressed(Qt::Key(e->key()));
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment