diff --git a/src/monitor/glwidget.cpp b/src/monitor/glwidget.cpp index 06b3519b936a8f6e3b15c9e3f9614c02fb6faefb..f0e5ebf1e780f371df301cd74e531aa061920682 100644 --- a/src/monitor/glwidget.cpp +++ b/src/monitor/glwidget.cpp @@ -1826,8 +1826,8 @@ void GLWidget::updateScaling() m_profileSize = profileSize; } else { int width = previewHeight * pCore->getCurrentDar() / pCore->getCurrentSar(); - if (width % 8 > 0) { - width += 8 - width % 8; + if (width % 2 > 0) { + width ++; } m_profileSize = QSize(width, previewHeight); }