1
Fork 0
mirror of https://github.com/redstrate/Novus.git synced 2025-04-24 04:57:45 +00:00

exlpart: Remove unnecessary margins around the table

This commit is contained in:
Joshua Goins 2024-02-04 14:29:19 -05:00
parent 75b63fcc3f
commit 89416ec3db

View file

@ -15,6 +15,7 @@ EXLPart::EXLPart(GameData *data, QWidget *parent)
, data(data)
{
auto layout = new QVBoxLayout();
layout->setContentsMargins(0, 0, 0, 0);
m_tableWidget = new QTableWidget();
layout->addWidget(m_tableWidget);
setLayout(layout);