mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
AppFwk : Set content margins to zero
This commit is contained in:
parent
8562d0e98b
commit
87f595a047
@ -118,7 +118,9 @@ PdmUiTableViewEditor::~PdmUiTableViewEditor()
|
||||
QWidget* PdmUiTableViewEditor::createWidget(QWidget* parent)
|
||||
{
|
||||
m_mainWidget = new QWidget(parent);
|
||||
m_layout = new QVBoxLayout();
|
||||
|
||||
m_layout = new QVBoxLayout();
|
||||
m_layout->setContentsMargins(0, 0, 0, 0);
|
||||
m_mainWidget->setLayout(m_layout);
|
||||
|
||||
m_tableModelPdm = new PdmUiTableViewModel(m_mainWidget);
|
||||
|
Loading…
Reference in New Issue
Block a user