Thanks for the reply but unfortunately it does not work:
margin-spacing.png
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow
::MainWindow(QWidget *parent
) : ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->horizontalLayout_5->setMargin(0);
ui->horizontalLayout_5->setSpacing(0);
ui->verticalLayout->setMargin(0);
ui->verticalLayout->setSpacing(0);
}
#include "mainwindow.h"
#include "ui_mainwindow.h"
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this);
ui->horizontalLayout_5->setMargin(0);
ui->horizontalLayout_5->setSpacing(0);
ui->verticalLayout->setMargin(0);
ui->verticalLayout->setSpacing(0);
}
To copy to clipboard, switch view to plain text mode
Bookmarks