Skip to content
Snippets Groups Projects
Commit d161e4ba authored by am0ebe's avatar am0ebe
Browse files

.

parent ae17fc6d
No related branches found
No related tags found
No related merge requests found
......@@ -193,7 +193,6 @@ QString Cam::camInfo()
{
QString camInfo = _name + DELIM + _ip + DELIM;
camInfo += "recDur:" + formatTime( _rec->dur().count() * 1000 ) + DELIM; //XXX mv down
if( state() == Cam::disconnected )
return camInfo + "disconnected";
......@@ -217,8 +216,9 @@ QString Cam::camInfo()
camInfo += stateToString(_state);
if( _state == recording)
_rec->showProgress();
//else dur
_rec->showProgress(); //xxx string to add to camInfo
else
camInfo += "recdur:" + formatTime( _rec->dur().count() * 1000 ) + DELIM;
}
catch(const std::exception& e)
......
......@@ -113,7 +113,7 @@ void Console::printHelp()
<< "i: show info"
<< "l: list available cameras"
<< "k: deteKt cameras"
<< "y: load cam settings ("+ utils::settingsFile()+")"
<< "y: load cam settings"
<< "u: save cam settings"
<< "v: print versions"
<< "q: quit"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment