Commit ae00e90a3f05cfd30ac7308ec9708d3387d2b463

Authored by Scott Klum
1 parent ae960642

Hide failure to open console warnings unless Globals->verbose

Showing 1 changed file with 1 additions and 1 deletions
openbr/plugins/io/read.cpp
@@ -68,7 +68,7 @@ private: @@ -68,7 +68,7 @@ private:
68 } 68 }
69 } 69 }
70 } 70 }
71 - if (dst.file.fte) 71 + if (dst.file.fte && Globals->verbose)
72 qWarning("Error opening %s", qPrintable(src.file.flat())); 72 qWarning("Error opening %s", qPrintable(src.file.flat()));
73 } 73 }
74 }; 74 };