mirror of
https://github.com/lostjared/Acid.Cam.v2.Qt.git
synced 2025-12-05 14:30:03 +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)
|
||||
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"));
|
||||
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"));
|
||||
|
||||
@@ -141,7 +141,6 @@ bool Playback::openVideo(std::string vname) {
|
||||
mutex.unlock();
|
||||
return true;
|
||||
}
|
||||
|
||||
void Playback::setVector(std::vector<FilterValue> v) {
|
||||
mutex.lock();
|
||||
// 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)
|
||||
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;
|
||||
if(ac::getMaxAllocated() < 1080 && draw_strings[f.filter].find("Slit") != std::string::npos)
|
||||
return;
|
||||
|
||||
Reference in New Issue
Block a user