Skip to content

Commit

Permalink
Merge pull request #1 from CrossyChainsaw/CreateEXE
Browse files Browse the repository at this point in the history
Create exe
  • Loading branch information
CrossyChainsaw committed Jun 26, 2024
2 parents cb15ae3 + e962f49 commit 05fc142
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 1 deletion.
Binary file added dist/BrawlTemplateMatcher.exe
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed modules/__pycache__/crop_image.cpython-312.pyc
Binary file not shown.
Binary file not shown.
Binary file removed modules/__pycache__/open_dialog.cpython-312.pyc
Binary file not shown.
7 changes: 6 additions & 1 deletion modules/open_dialog.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ def open_image_dialog():
root.withdraw() # Hide the root window

# Open the file dialog
file_path = filedialog.askopenfilename(filetypes=[("Image files", "*.png;")])
print("Select a template image")
file_path = filedialog.askopenfilename(
title="Select a template image",
filetypes=[("Image files", "*.png;")])

# Close the Tkinter root window
root.destroy()
Expand All @@ -22,7 +25,9 @@ def open_mp4_dialog():
root.withdraw() # Hide the root window

# Open the file dialog
print("Select a Brawlhalla 1v1 Ranked VOD")
file_path = filedialog.askopenfilename(
title="Select a Brawlhalla 1v1 Ranked VOD",
filetypes=[("MP4 files", "*.mp4")]
)

Expand Down

0 comments on commit 05fc142

Please sign in to comment.