Skip to content

Commit

Permalink
Qt: Fix missing line on first postfx category
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Jul 26, 2024
1 parent 3282366 commit 5656f91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/duckstation-qt/postprocessingsettingswidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ void PostProcessingShaderConfigWidget::createUi()
m_layout->addWidget(label, row++, 0, 1, 3, Qt::AlignLeft);
}

if (last_category)
if (last_category || !option.category.empty())
{
QLabel* line = new QLabel(this);
line->setFrameShape(QFrame::HLine);
Expand Down

0 comments on commit 5656f91

Please sign in to comment.