This fixes #362, making the enter key copy the content of the GUI selection copy the content to the clipboard
This commit is contained in:
Streppel
2018-10-04 11:43:25 -03:00
committed by Dharkael
parent d945267203
commit c3ad9b6c41

View File

@@ -741,6 +741,7 @@ void CaptureWidget::initShortcuts() {
new QShortcut(Qt::Key_Space, this, SLOT(togglePanel()));
new QShortcut(Qt::Key_Escape, this, SLOT(deleteToolwidgetOrClose()));
new QShortcut(Qt::Key_Return, this, SLOT(copyScreenshot()));
new QShortcut(Qt::Key_Enter, this, SLOT(copyScreenshot()));
}
void CaptureWidget::updateSizeIndicator() {