Merge pull request #525 from salahmak/image-upload-dialog
Pressing return on image upload dialog sends the message
This commit is contained in:
commit
61c5dffffd
@ -48,6 +48,12 @@ PreviewUploadOverlay::PreviewUploadOverlay(QWidget *parent)
|
||||
emit confirmUpload(data_, mediaType_, fileName_.text());
|
||||
close();
|
||||
});
|
||||
|
||||
connect(&fileName_, &QLineEdit::returnPressed, this, [this]() {
|
||||
emit confirmUpload(data_, mediaType_, fileName_.text());
|
||||
close();
|
||||
});
|
||||
|
||||
connect(&cancel_, &QPushButton::clicked, this, [this]() {
|
||||
emit aborted();
|
||||
close();
|
||||
|
Loading…
Reference in New Issue
Block a user