Skip to content

Commit d231936

Browse files
Merge pull request #931 from TheDeanLab/save_dialog_size
Update acquire_popup.py
2 parents 235263e + 97f4714 commit d231936

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/navigate/view/popups/acquire_popup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2021-2022 The University of Texas Southwestern Medical Center.
1+
# Copyright (c) 2021-2024 The University of Texas Southwestern Medical Center.
22
# All rights reserved.
33

44
# Redistribution and use in source and binary forms, with or without
@@ -41,7 +41,7 @@
4141
# Local Imports
4242
from navigate.view.custom_widgets.popup import PopUp
4343
from navigate.view.custom_widgets.LabelInputWidgetFactory import LabelInput
44-
from navigate.view.custom_widgets.validation import ValidatedCombobox, ValidatedEntry
44+
from navigate.view.custom_widgets.validation import ValidatedCombobox
4545
from navigate.model.data_sources import FILE_TYPES
4646

4747
# Logger Setup
@@ -69,7 +69,7 @@ def __init__(self, root, *args, **kwargs):
6969
# window
7070
#: PopUp: The popup window
7171
self.popup = PopUp(
72-
root, "File Saving Dialog", "430x530+320+180", transient=True
72+
root, "File Saving Dialog", "430x370+320+180", transient=True
7373
)
7474

7575
# Storing the content frame of the popup, this will be the parent of the widgets
@@ -82,6 +82,7 @@ def __init__(self, root, *args, **kwargs):
8282
# Dictionary for all the variables
8383
#: dict: Dictionary of all the variables
8484
self.inputs = {}
85+
8586
#: dict: Dictionary of all the buttons
8687
self.buttons = {}
8788

0 commit comments

Comments
 (0)