mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-05 22:40:16 +01:00
fix case
This commit is contained in:
@@ -851,7 +851,7 @@ void AC_MainWindow::comboFilterChanged(int) {
|
|||||||
|
|
||||||
if(playback->getMaxAlloc() < 1080 && text.find("Intertwine") != std::string::npos)
|
if(playback->getMaxAlloc() < 1080 && text.find("Intertwine") != std::string::npos)
|
||||||
Log(tr("Set Max Frames to greater than 1080 (requires enough RAM) to use Intertwine filters\n"));
|
Log(tr("Set Max Frames to greater than 1080 (requires enough RAM) to use Intertwine filters\n"));
|
||||||
if(playback->getMaxAlloc() < 1080 && text.find("inOrder") != std::string::npos)
|
if(playback->getMaxAlloc() < 1080 && text.find("InOrder") != std::string::npos)
|
||||||
Log(tr("Set Max Frames to greater than 1080 (requires enough RAM) to use inOrder filters\n"));
|
Log(tr("Set Max Frames to greater than 1080 (requires enough RAM) to use inOrder filters\n"));
|
||||||
if(playback->getMaxAlloc() < 1080 && text.find("Slit") != std::string::npos)
|
if(playback->getMaxAlloc() < 1080 && text.find("Slit") != std::string::npos)
|
||||||
Log(tr("Set Max Frames to greater than 1080 (requires enough RAM) to use SlitScan filters\n"));
|
Log(tr("Set Max Frames to greater than 1080 (requires enough RAM) to use SlitScan filters\n"));
|
||||||
|
|||||||
@@ -141,7 +141,6 @@ bool Playback::openVideo(std::string vname) {
|
|||||||
mutex.unlock();
|
mutex.unlock();
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
void Playback::setVector(std::vector<FilterValue> v) {
|
void Playback::setVector(std::vector<FilterValue> v) {
|
||||||
mutex.lock();
|
mutex.lock();
|
||||||
// here:
|
// here:
|
||||||
@@ -351,7 +350,7 @@ void Playback::drawFilter(cv::Mat &frame, FilterValue &f) {
|
|||||||
|
|
||||||
if(ac::getMaxAllocated() < 1080 && draw_strings[f.filter].find("Intertwine") != std::string::npos)
|
if(ac::getMaxAllocated() < 1080 && draw_strings[f.filter].find("Intertwine") != std::string::npos)
|
||||||
return;
|
return;
|
||||||
if(ac::getMaxAllocated() < 1080 && draw_strings[f.filter].find("inOrder") != std::string::npos)
|
if(ac::getMaxAllocated() < 1080 && draw_strings[f.filter].find("InOrder") != std::string::npos)
|
||||||
return;
|
return;
|
||||||
if(ac::getMaxAllocated() < 1080 && draw_strings[f.filter].find("Slit") != std::string::npos)
|
if(ac::getMaxAllocated() < 1080 && draw_strings[f.filter].find("Slit") != std::string::npos)
|
||||||
return;
|
return;
|
||||||
|
|||||||
Reference in New Issue
Block a user