Merge pull request #1577 from y2kmurali/master

Fix textbox issues when exporting pdf
presentation
Bryan Tan 6 years ago committed by GitHub
commit ef5976ac75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      src/control/Control.cpp

@ -2700,11 +2700,13 @@ void Control::updateWindowTitle()
void Control::exportAsPdf()
{
this->clearSelectionEndText();
exportBase(new PdfExportJob(this));
}
void Control::exportAs()
{
this->clearSelectionEndText();
exportBase(new CustomExportJob(this));
}

Loading…
Cancel
Save