mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 12:04:18 +02:00
Reorder property initialization in FramelessDialog
This commit is contained in:
parent
1774f6c9bd
commit
0cba95e7ad
1 changed files with 3 additions and 3 deletions
|
@ -16,10 +16,10 @@ const int RESIZE_HANDLE_WIDTH = 7;
|
|||
|
||||
FramelessDialog::FramelessDialog(QWidget *parent, Qt::WindowFlags flags, Position position) :
|
||||
QDialog(parent, flags | Qt::FramelessWindowHint | Qt::WindowStaysOnTopHint),
|
||||
_position(position),
|
||||
_selfHidden(false),
|
||||
_isResizing(false),
|
||||
_resizeInitialWidth(0) {
|
||||
_resizeInitialWidth(0),
|
||||
_selfHidden(false),
|
||||
_position(position) {
|
||||
|
||||
setAttribute(Qt::WA_DeleteOnClose);
|
||||
|
||||
|
|
Loading…
Reference in a new issue