Create user profile modal
This commit is contained in:
parent
5540fc0737
commit
d7e5171bfa
27 changed files with 265 additions and 13 deletions
|
|
@ -25,11 +25,11 @@ OverlayModal::OverlayModal(QWidget *parent, QWidget *content)
|
|||
, content_{content}
|
||||
, color_{QColor(30, 30, 30, 170)}
|
||||
{
|
||||
auto layout = new QVBoxLayout();
|
||||
layout->addWidget(content);
|
||||
layout->setAlignment(Qt::AlignCenter);
|
||||
|
||||
setLayout(layout);
|
||||
layout_ = new QVBoxLayout(this);
|
||||
layout_->addWidget(content);
|
||||
layout_->setSpacing(0);
|
||||
layout_->setContentsMargins(10, 40, 10, 20);
|
||||
setContentAlignment(Qt::AlignTop | Qt::AlignHCenter);
|
||||
|
||||
content->setFocus();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue