Skip to content

Commit

Permalink
fix line breaks in transition vqm
Browse files Browse the repository at this point in the history
  • Loading branch information
ddennedy committed Oct 18, 2024
1 parent 965dd49 commit ed2eddd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/modules/qt/transition_vqm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -177,9 +177,9 @@ static int get_image(mlt_frame a_frame,
ssim[1],
ssim[2]);
painter.setPen(Qt::black);
painter.drawText(52, *height * 8 / 10 + 2, s);
painter.drawText(52, *height * 8 / 10 + 2, *width, *height, 0, s);
painter.setPen(Qt::white);
painter.drawText(50, *height * 8 / 10, s);
painter.drawText(50, *height * 8 / 10, *width, *height, 0, s);

// finish Qt drawing
painter.end();
Expand Down

0 comments on commit ed2eddd

Please sign in to comment.