Skip to content

Commit b70087d

Browse files
authored
Merge pull request #162 from sillsdev/fix-clearing-checkbox-for-last-translation
Made it possible to click the checkbox to clear the translation for…
2 parents c0caf01 + ea64d8b commit b70087d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Transcelerator.sln.DotSettings

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
<s:Boolean x:Key="/Default/UserDictionary/Words/=DOCTYPE/@EntryIndexedValue">True</s:Boolean>
1919
<s:Boolean x:Key="/Default/UserDictionary/Words/=endref/@EntryIndexedValue">True</s:Boolean>
2020
<s:Boolean x:Key="/Default/UserDictionary/Words/=espa_00F1ol/@EntryIndexedValue">True</s:Boolean>
21+
<s:Boolean x:Key="/Default/UserDictionary/Words/=finfo/@EntryIndexedValue">True</s:Boolean>
2122
<s:Boolean x:Key="/Default/UserDictionary/Words/=Jambres/@EntryIndexedValue">True</s:Boolean>
2223
<s:Boolean x:Key="/Default/UserDictionary/Words/=kludgy/@EntryIndexedValue">True</s:Boolean>
2324
<s:Boolean x:Key="/Default/UserDictionary/Words/=Lectionary/@EntryIndexedValue">True</s:Boolean>

Transcelerator/UNSQuestionsDialog.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ private void dataGridUns_CellEnter(object sender, DataGridViewCellEventArgs e)
10751075
if (dataGridUns.IsCurrentCellInEditMode)
10761076
m_translationEditWasCommitted = false;
10771077
}
1078-
else if (e.RowIndex != m_lastTranslationSet)
1078+
if (e.RowIndex != m_lastTranslationSet)
10791079
m_lastTranslationSet = -1;
10801080
}
10811081

0 commit comments

Comments
 (0)