Skip to content

Commit be57e17

Browse files
committed
resizable window
fixing #74
1 parent 475f0be commit be57e17

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Batch.roboFontExt/lib/batch.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,6 @@ def build(self, sources=[]):
109109
"""
110110
descriptionData = dict(
111111
sources=dict(
112-
height=200,
113112
columnDescriptions=[dict(identifier="source", title="Sources", cellClassArguments=dict(truncationMode="head"))],
114113
showColumnTitles=True,
115114
enableDelete=True,
@@ -134,7 +133,9 @@ def build(self, sources=[]):
134133
title="Batch",
135134
content=content,
136135
descriptionData=descriptionData,
137-
size="auto",
136+
size=(435, 450),
137+
minSize=(435, 450),
138+
maxSize=(435, 1000),
138139
defaultButton="generate",
139140
controller=self,
140141
)

0 commit comments

Comments
 (0)