Add style for reply popup. Fix ALL of the linting issues

This commit is contained in:
redsky17 2019-06-11 23:36:46 -04:00
parent 71c1cbcfd1
commit 1d4966d5fd
No known key found for this signature in database
GPG key ID: E8A1D78EF044B0CB
12 changed files with 23 additions and 16 deletions

View file

@ -176,18 +176,16 @@ FilteredTextEdit::keyPressEvent(QKeyEvent *event)
}
if (replyPopup_.isVisible()) {
switch (event->key())
{
switch (event->key()) {
case Qt::Key_Escape:
closeReply();
return;
default:
break;
}
}
switch (event->key()) {
case Qt::Key_At:
atTriggerPosition_ = textCursor().position();