Reduce padding in settings popup

This commit is contained in:
RickyRister 2026-01-08 21:27:18 -08:00
parent 6340c4a6b7
commit 8fca7d6058

View file

@ -10,6 +10,7 @@ SettingsPopupWidget::SettingsPopupWidget(QWidget *parent) : QWidget(parent, Qt::
{
// Main layout for the popup itself
layout = new QVBoxLayout(this);
layout->setContentsMargins(5, 5, 5, 5);
// Container for the content (with or without scroll area)
containerWidget = new QWidget();