Minor visual improvements

git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@553 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
niksedk 2011-07-09 10:09:33 +00:00
parent 3e07e922ac
commit 211908b730

View File

@ -1361,7 +1361,7 @@ namespace Nikse.SubtitleEdit.Forms
else if (line.Trim().Length == 0)
subtitleListView1.SetBackgroundColor(listViewIndex, Color.Orange);
else
subtitleListView1.SetBackgroundColor(listViewIndex, Color.Green);
subtitleListView1.SetBackgroundColor(listViewIndex, Color.LightGreen);
}
if (textWithOutFixes.Trim() != line.Trim())
@ -1895,7 +1895,7 @@ namespace Nikse.SubtitleEdit.Forms
else if (line.Trim().Length == 0)
subtitleListView1.SetBackgroundColor(index, Color.Orange);
else
subtitleListView1.SetBackgroundColor(index, Color.Green);
subtitleListView1.SetBackgroundColor(index, Color.LightGreen);
}
else
{ // no dictionary :(
@ -1911,7 +1911,7 @@ namespace Nikse.SubtitleEdit.Forms
else if (line.Trim().Length == 0)
subtitleListView1.SetBackgroundColor(index, Color.Orange);
else
subtitleListView1.SetBackgroundColor(index, Color.Green);
subtitleListView1.SetBackgroundColor(index, Color.LightGreen);
}
if (textWithOutFixes.ToString().Trim() != line.Trim())
@ -2172,7 +2172,9 @@ namespace Nikse.SubtitleEdit.Forms
string path = Configuration.VobSubCompareFolder + comboBoxCharacterDatabase.SelectedItem + Path.DirectorySeparatorChar;
_compareDoc.Save(path + "CompareDescription.xml");
}
Cursor = Cursors.WaitCursor;
LoadImageCompareBitmaps();
Cursor = Cursors.Default;
return result;
}