Skip to content

Commit 05567aa

Browse files
committed
Remove window positioning
1 parent 3df29f7 commit 05567aa

1 file changed

Lines changed: 0 additions & 7 deletions

File tree

Batch.roboFontExt/lib/batch.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,6 @@ def started(self):
154154
for identifier in list(items.keys()):
155155
if identifier not in possibleIdentifiers:
156156
del items[identifier]
157-
158-
# position the window where it was last
159-
wx, wy, ww, wh = self.w.getPosSize()
160-
posSize = getExtensionDefault("com.typemytype.batch.windowPosSize", fallback=(wx, wy, ww, wh))
161-
self.w.setPosSize(posSize)
162-
163157
self.w.setItemValues(items)
164158
self.w.open()
165159

@@ -169,7 +163,6 @@ def destroy(self):
169163
if identifier in items:
170164
del items[identifier]
171165
setExtensionDefault("com.typemytype.batch", items)
172-
setExtensionDefault("com.typemytype.batch.windowPosSize", self.w.getPosSize())
173166

174167
def sourcesAddRemoveButtonAddCallback(self, sender):
175168
# add item

0 commit comments

Comments
 (0)