You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Radmind Transcript Editor didn’t generate case-insensitive transcripts if the Pref-Option is set and i add manually files to a transcript.
I found out that a Bug is in RXTranscript.m and the “-I” Option is not set in function readFile.
The problem could be fixed with replace the FSDIFF case with following:
The Radmind Transcript Editor didn’t generate case-insensitive transcripts if the Pref-Option is set and i add manually files to a transcript.
I found out that a Bug is in RXTranscript.m and the “-I” Option is not set in function readFile.
The problem could be fixed with replace the FSDIFF case with following:
case FSDIFF:
if ( recurse ) {
fsdiffType =
"-K/dev/null"; } args = [ NSArray arrayWithObjects: @"-AExecuteCommand", [ NSString stringWithFormat: @"-U%
“,[[ self delegate ] sessionUserName ]],
@”—“, @”/usr/local/bin/fsdiff", nil ];
if ( [[ NSUserDefaults standardUserDefaults ] integerForKey:
@"RTECaseSensitive" ] == 0 ) {
args = [ args arrayByAddingObject: @"-I" ];
}
args = [ args arrayByAddingObjectsFromArray:
[ NSArray arrayWithObjects: @"-csha1", fsdiffType, arg1, nil ]];
break;
Original comment by: reisswolf
The text was updated successfully, but these errors were encountered: