Skip to content
Snippets Groups Projects
Commit 8d11d7d2 authored by Stéphane Albert's avatar Stéphane Albert
Browse files

BUG: MANTIS-1154: Fixed BSQImageIO::GetOverviewsCount().

parent 21623b40
No related branches found
No related tags found
No related merge requests found
...@@ -104,7 +104,9 @@ public: ...@@ -104,7 +104,9 @@ public:
* This imageIO didn't support overviews */ * This imageIO didn't support overviews */
virtual unsigned int GetOverviewsCount() virtual unsigned int GetOverviewsCount()
{ {
return 0; // MANTIS-1154: Source image is always considered as the best
// resolution overview.
return 1;
} }
/** Get information about overviews available into the file specified /** Get information about overviews available into the file specified
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment