We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f5ad8a commit 3b358d8Copy full SHA for 3b358d8
1 file changed
src/fhex.cpp
@@ -556,6 +556,7 @@ void Fhex::keyPressEvent(QKeyEvent *event) {
556
if ((event->key() == Qt::Key_Space) && QApplication::keyboardModifiers().testFlag(Qt::ControlModifier)) {
557
pair<qint64,qint64> offsets = this->qhex->selectedOffsets();
558
QApplication::clipboard()->setText(QString::fromWCharArray(this->hexEditor->getCurrentDataAsWString(offsets.first, offsets.second - offsets.first).c_str()));
559
+ this->statusBar.setText("Text copied");
560
} else if (event->key() == Qt::Key_F5) {
561
this->loadFile(this->hexEditor->getCurrentPath().c_str());
562
} else if ((event->key() == Qt::Key_Right) && QApplication::keyboardModifiers().testFlag(Qt::AltModifier)) {
0 commit comments