mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 21:04:40 +01:00
Merge pull request #2355 from pypeclub/bugfix/minimize_launcher_btn_on_mac
Launcher: Minimize button on MacOs
This commit is contained in:
commit
d5971eea6a
1 changed files with 5 additions and 1 deletions
|
|
@ -243,7 +243,11 @@ class LauncherWindow(QtWidgets.QDialog):
|
|||
|
||||
# Allow minimize
|
||||
self.setWindowFlags(
|
||||
self.windowFlags() | QtCore.Qt.WindowMinimizeButtonHint
|
||||
QtCore.Qt.Window
|
||||
| QtCore.Qt.CustomizeWindowHint
|
||||
| QtCore.Qt.WindowTitleHint
|
||||
| QtCore.Qt.WindowMinimizeButtonHint
|
||||
| QtCore.Qt.WindowCloseButtonHint
|
||||
)
|
||||
|
||||
project_model = ProjectModel(self.dbcon)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue