Skip to content

Commit

Permalink
删除多余换行
Browse files Browse the repository at this point in the history
  • Loading branch information
flyjay123 committed Jun 13, 2023
1 parent 3388c07 commit 869cc59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Client/Rewriting/sendtextedit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ void SendTextEdit::keyPressEvent(QKeyEvent* event)
}
}
//Ctrl+C
if ((event->modifiers() & Qt::ControlModifier) && event->key() == Qt::Key_C)
else if ((event->modifiers() & Qt::ControlModifier) && event->key() == Qt::Key_C)
{
QTextEdit::keyPressEvent(event);
// 获取剪切板对象
Expand Down

0 comments on commit 869cc59

Please sign in to comment.