mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Add 4 file types op file-open logbook menu filter, consistency
4 file types (that are very rarely used), did showup in the import-import dive logs menu (e.g. the file filter), but were missing from file-open logbook file type filter. Just added them to the file-open part to be more consistent. Signed-off-by: Jan Mulder <jlmulder@xs4all.nl>
This commit is contained in:
parent
7165cb473a
commit
0f56a1e4bf
1 changed files with 10 additions and 1 deletions
|
@ -1235,6 +1235,11 @@ QString MainWindow::filter()
|
|||
f += "*.uddf *.UDDF ";
|
||||
f += "*.xml *.XML ";
|
||||
f += "*.dlf *.DLF ";
|
||||
f += "*.log *.LOG ";
|
||||
f += "*.txt *.TXT) ";
|
||||
f += "*.apd *.APD) ";
|
||||
f += "*.dive *.DIVE ";
|
||||
f += "*.zxu *.zxl *.ZXU *.ZXL ";
|
||||
f += ");;";
|
||||
|
||||
f += "Subsurface (*.ssrf);;";
|
||||
|
@ -1247,7 +1252,11 @@ QString MainWindow::filter()
|
|||
f += "UDDF (*.uddf *.UDDF);;";
|
||||
f += "XML (*.xml *.XML);;";
|
||||
f += "Divesoft (*.dlf *.DLF);;";
|
||||
f += "Datatrak/WLog Files (*.log *.LOG)";
|
||||
f += "Datatrak/WLog Files (*.log *.LOG);;";
|
||||
f += "MkVI files (*.txt *.TXT);;";
|
||||
f += "APD log viewer (*.apd *.APD);;";
|
||||
f += "OSTCtools Files (*.dive *.DIVE);;";
|
||||
f += "DAN DL7 (*.zxu *.zxl *.ZXU *.ZXL)";
|
||||
|
||||
return f;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue