Fixed that very annoying label bug, where the 'g' in the Registers label (in the Target Registers tool button) was being clipped.

This commit is contained in:
Nav
2022-04-28 21:08:31 +01:00
parent fa037a81b1
commit 178df2d9e0
2 changed files with 10 additions and 6 deletions

View File

@@ -114,7 +114,7 @@ namespace Bloom
auto* targetRegisterButtonLayout = this->targetRegistersButton->findChild<QVBoxLayout*>();
auto* registersBtnLabel = new RotatableLabel(270, "Registers", this->targetRegistersButton);
registersBtnLabel->setObjectName("target-registers-btn-label");
registersBtnLabel->setContentsMargins(5,0,9,0);
registersBtnLabel->setContentsMargins(4, 3, 10, 0);
targetRegisterButtonLayout->insertWidget(0, registersBtnLabel, 0, Qt::AlignTop);
this->bottomMenuBar = this->container->findChild<QWidget*>("bottom-menu-bar");