diff --git a/Src/xWorks/RecordClerk.cs b/Src/xWorks/RecordClerk.cs index d7fee30850..09527a47b5 100644 --- a/Src/xWorks/RecordClerk.cs +++ b/Src/xWorks/RecordClerk.cs @@ -2864,15 +2864,15 @@ public void UpdateParsingDevStatusBarPanel() var b = m_propertyTable.GetValue("ParsingDev"); if (b == null) //Other xworks apps may not have this panel return; - if (!m_propertyTable.GetBoolProperty("ParsingDevMode", false, PropertyTable.SettingsGroup.LocalSettings)) + if (Id == "interlinearTexts" && m_propertyTable.GetBoolProperty("ParsingDevMode", false, PropertyTable.SettingsGroup.LocalSettings)) { - b.BackBrush = System.Drawing.Brushes.Transparent; - b.TextForReal = ""; + b.BackBrush = System.Drawing.Brushes.Tan; + b.TextForReal = xWorksStrings.ParsingDev; } else { - b.BackBrush = System.Drawing.Brushes.Tan; - b.TextForReal = xWorksStrings.ParsingDev; + b.BackBrush = System.Drawing.Brushes.Transparent; + b.TextForReal = ""; } }