I have build a UI using customtkinter, specificly the CTkButton()
button_createCrawler = customtkinter.CTkButton(
    master=frame_crawlerAdd,
    text="Erstellen",
    hover=True,
    fg_color="#007b95",
    hover_color="#004f60",
    command=start_crawl
)
The function that gets called will start a Crawler which runs 24/7 to scrape a website. The Button itself works and calls the function, but i am unable to click anything else without crashing it. What am i doing wrong here?
