mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-30 22:20:21 +00:00
Show subsurface logo in dive plan print out
A little bit of CI: Print our logo on the print out dive plan. Signed-off-by: Robert C. Helling <helling@atdotde.de> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1b7abab9b9
commit
496f658838
1 changed files with 1 additions and 1 deletions
|
@ -453,7 +453,7 @@ void MainWindow::printPlan()
|
|||
{
|
||||
#ifndef NO_PRINTING
|
||||
QString diveplan = ui.divePlanOutput->toHtml();
|
||||
QString withDisclaimer = diveplan + QString(disclaimer);
|
||||
QString withDisclaimer = QString("<img height=50 src=\":subsurface-icon\"> ") + diveplan + QString(disclaimer);
|
||||
|
||||
QPrinter printer;
|
||||
QPrintDialog *dialog = new QPrintDialog(&printer, this);
|
||||
|
|
Loading…
Reference in a new issue