Skip to content

Commit

Permalink
Add sqlite file extension to database selector
Browse files Browse the repository at this point in the history
  • Loading branch information
moving-bits authored and ansgarbecker committed Jan 10, 2020
1 parent 1344c10 commit 2d7191e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/connections.pas
Expand Up @@ -1359,7 +1359,7 @@ procedure Tconnform.PickFile(Sender: TObject);
Selector := TOpenDialog.Create(Self);
Selector.FileName := editStartupScript.Text;
if Edit = editHost then
Selector.Filter := 'SQLite databases (*.sqlite3;*.db;*.s3db)|*.sqlite3;*.db;*.s3db|'+_('All files')+' (*.*)|*.*'
Selector.Filter := 'SQLite databases (*.sqlite3;*.sqlite;*.db;*.s3db)|*.sqlite3;*.sqlite;*.db;*.s3db|'+_('All files')+' (*.*)|*.*'
else if Edit = editStartupScript then
Selector.Filter := _('SQL files')+' (*.sql)|*.sql|'+_('All files')+' (*.*)|*.*'
else if Edit = editSSHPlinkExe then
Expand Down

0 comments on commit 2d7191e

Please sign in to comment.