From adf083b243d3fd77474dcf3fc3c85ed98f7a3400 Mon Sep 17 00:00:00 2001 From: Jakub Trllo Date: Mon, 3 Oct 2022 19:24:01 +0200 Subject: [PATCH] window is bigger --- openpype/tools/publisher/window.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openpype/tools/publisher/window.py b/openpype/tools/publisher/window.py index 558e2ab869..94eb031b95 100644 --- a/openpype/tools/publisher/window.py +++ b/openpype/tools/publisher/window.py @@ -31,8 +31,8 @@ from .widgets import ( class PublisherWindow(QtWidgets.QDialog): """Main window of publisher.""" - default_width = 1200 - default_height = 700 + default_width = 1300 + default_height = 800 def __init__(self, parent=None, reset_on_show=None): super(PublisherWindow, self).__init__(parent)