mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Added Cochran CAN files to the Open Logbook dialog
Subsurface can now open CAN files as an alternative to importing. Signed-off-by: John Van Ostrand <john@vanostrand.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
e32ba4d6d8
commit
884f653176
1 changed files with 3 additions and 2 deletions
|
@ -704,7 +704,7 @@ QString MainWindow::filter()
|
|||
QString f;
|
||||
f += "ALL ( *.ssrf *.xml *.XML *.uddf *.udcf *.UDFC *.jlb *.JLB ";
|
||||
f += "*.sde *.SDE *.dld *.DLD ";
|
||||
f += "*.db";
|
||||
f += "*.db *.can";
|
||||
f += ");;";
|
||||
|
||||
f += "Subsurface (*.ssrf);;";
|
||||
|
@ -715,7 +715,8 @@ QString MainWindow::filter()
|
|||
|
||||
f += "SDE (*.sde *.SDE);;";
|
||||
f += "DLD (*.dld *.DLD);;";
|
||||
f += "DB (*.db)";
|
||||
f += "DB (*.db);;";
|
||||
f += "CAN (*.can)";
|
||||
|
||||
return f;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue