UI: Make hotkey edit layout margins symmetrical

This commit is contained in:
gxalpha 2023-04-15 00:24:11 +02:00 committed by Jim
parent 4d2f7ef009
commit 597ceb2ff0

View file

@ -333,7 +333,7 @@ void OBSHotkeyWidget::AddEdit(obs_key_combination combo, int idx)
[&, CurrentIndex] { RemoveEdit(CurrentIndex()); });
QHBoxLayout *subLayout = new QHBoxLayout;
subLayout->setContentsMargins(0, 4, 0, 0);
subLayout->setContentsMargins(0, 2, 0, 2);
subLayout->addWidget(edit);
subLayout->addWidget(revert);
subLayout->addWidget(clear);