Tools: FilterTestTool fix open .BIN files on case sensitive systems

This commit is contained in:
Jaaaky 2020-02-16 16:47:49 +02:00 committed by Peter Barker
parent cd673b5ffd
commit 26d81e3d13
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ if not log_file:
root = Tk() root = Tk()
root.withdraw() root.withdraw()
root.focus_force() root.focus_force()
log_file = askopenfilename(title="Select log file", filetypes=(("log files", ".bin .log"), ("all files", "*.*"))) log_file = askopenfilename(title="Select log file", filetypes=(("log files", ".BIN .bin .log"), ("all files", "*.*")))
root.update() root.update()
root.destroy() root.destroy()