Auto retranslate item after user edition if it should be.

This commit is contained in:
Gres 2015-10-10 00:06:10 +03:00
parent 9083a7ca6c
commit 350fa4cd72

View File

@ -270,7 +270,7 @@ void Manager::editRecognized (ProcessingItem item) {
NULL, tr ("Правка"), tr ("Исправьте распознанный текст"), item.recognized); NULL, tr ("Правка"), tr ("Исправьте распознанный текст"), item.recognized);
if (!fixed.isEmpty ()) { if (!fixed.isEmpty ()) {
item.recognized = fixed; item.recognized = fixed;
showResult (item); emit requestTranslate (item);
} }
} }