Skip to content
Snippets Groups Projects
Commit 31069e92 authored by jpbl's avatar jpbl
Browse files

the OK button calls only if the line has a non-empty buffer

parent 9465a5e9
No related branches found
No related tags found
No related merge requests found
......@@ -102,7 +102,9 @@ PhoneLine::sendKey(Qt::Key c)
void
PhoneLine::call()
{
call(mBuffer);
if(mBuffer.size()) {
call(mBuffer);
}
}
void
......
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