${timestamp} variable in format option no longer works since version 4.6.0
Quickly OCR part of the screen and save resulting text to clipboard
Brought to you by:
cb4960
${timestamp} variable in format option no longer works since version 4.6.0. Instead now you have to use ${}.
Bug found in UtilsCommon.cpp
Function: QString UtilsCommon::formatLogLine
Line in version 4.5.1:
line.replace("${timestamp}", timestampToStr(timestamp));
Line in version 4.6.0 and later:
line.replace("${}", timestampToStr(timestamp));
Fixed in v4.6.3. Thanks.