Add support for NEF, DNG

This commit is contained in:
2022-06-02 15:41:43 +02:00
parent d1df789691
commit 5b44d2ac69
7 changed files with 10 additions and 7 deletions
+1 -1
View File
@@ -347,7 +347,7 @@ void LoadRunable::run()
RawImage *rawImage = nullptr;
bool raw = false;
if(m_file.endsWith(".CR2", Qt::CaseInsensitive))
if(m_file.endsWith(".CR2", Qt::CaseInsensitive) || m_file.endsWith(".NEF", Qt::CaseInsensitive) || m_file.endsWith(".DNG", Qt::CaseInsensitive))
{
timer.start();
loadRAW(m_file, info, &rawImage);