mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-24 12:54:40 +01:00
added minim resolution
This commit is contained in:
parent
2bee53dbe3
commit
783cf665d0
1 changed files with 3 additions and 0 deletions
|
|
@ -112,6 +112,8 @@ class InstallDialog(QtWidgets.QDialog):
|
|||
|
||||
mongo_url_regex = re.compile(r"(mongodb|mongodb+srv)://.+")
|
||||
|
||||
_width = 300
|
||||
_height = 200
|
||||
def __init__(self, parent=None):
|
||||
super(InstallDialog, self).__init__(parent)
|
||||
|
||||
|
|
@ -164,6 +166,7 @@ class InstallDialog(QtWidgets.QDialog):
|
|||
self.error_console_style.setForeground(
|
||||
QtGui.QColor.fromRgb(184, 54, 19))
|
||||
|
||||
self.setMinimumSize(QtCore.QSize(self._width, self._height))
|
||||
self._init_ui()
|
||||
|
||||
# Set stylesheet
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue