Skip to content
This repository has been archived by the owner on Jun 3, 2024. It is now read-only.

Commit

Permalink
Removed size limit on options windows
Browse files Browse the repository at this point in the history
  • Loading branch information
kelltom committed May 13, 2023
1 parent 80468ca commit bf6f45f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utilities/options_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ def __init__(self, title, placeholder):

class OptionsUI(customtkinter.CTkScrollableFrame):
WIDTH = 500
HEIGHT = 500
HEIGHT = 400

def __init__(self, parent, title: str, option_info: dict, controller):
# sourcery skip: raise-specific-error
super().__init__(parent)

parent.minsize(self.WIDTH, self.HEIGHT)
parent.geometry(f"{self.WIDTH}x{self.HEIGHT}")

# Contains the widgets for option selection.
# It will be queried to get the option values selected upon save btn clicked.
Expand Down

0 comments on commit bf6f45f

Please sign in to comment.