Skip to content

Commit

Permalink
Fix for issue #198
Browse files Browse the repository at this point in the history
GUI: Filter *.sqlite databases in the file dialog.
  • Loading branch information
joxeankoret committed Feb 5, 2021
1 parent ff07748 commit b824588
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions diaphora_ida.py
Original file line number Diff line number Diff line change
Expand Up @@ -466,8 +466,8 @@ def __init__(self):
NOTE: Don't select IDA database files (.IDB, .I64) as only SQLite databases are considered.
"""
args = {'iFileSave': Form.FileInput(save=True, swidth=40),
'iFileOpen': Form.FileInput(open=True, swidth=40),
args = {'iFileSave': Form.FileInput(save=True, swidth=40, hlp="SQLite database (*.sqlite)"),
'iFileOpen': Form.FileInput(open=True, swidth=40, hlp="SQLite database (*.sqlite)"),
'iMinEA': Form.NumericInput(tp=Form.FT_HEX, swidth=22),
'iMaxEA': Form.NumericInput(tp=Form.FT_HEX, swidth=22),
'cGroup1' : Form.ChkGroupControl(("rUseDecompiler",
Expand Down

0 comments on commit b824588

Please sign in to comment.