adonutwithsprinklez / CodenameEmpty

A text based adventure roguelite
GNU General Public License v3.0
6 stars 0 forks source link

Data Pack Editor does not launch on Mac #131

Open adonutwithsprinklez opened 2 years ago

adonutwithsprinklez commented 2 years ago

The Data Pack Editor does not currently launch on Mac. It seems to get stuck in a loop when attempting to attach the scrollbar listener to the metadata frame.

Commenting out the below code (dataPackEditor.py line 98-103) allows the application to run without issue:

metadataFrame.bind(
    "<Configure>",
    lambda e: canvas.configure(
        scrollregion=canvas.bbox("all")
    )
)