From eaa76d3d7789a49140a531fc226adfa20c20f631 Mon Sep 17 00:00:00 2001 From: ivandroly Date: Tue, 28 Jul 2015 17:43:40 +0100 Subject: [PATCH] Replace h1 with h2 --- src/Forms/ShowHistory.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Forms/ShowHistory.cs b/src/Forms/ShowHistory.cs index 87086d5aa..c3341058d 100644 --- a/src/Forms/ShowHistory.cs +++ b/src/Forms/ShowHistory.cs @@ -116,7 +116,7 @@ namespace Nikse.SubtitleEdit.Forms HistoryItem h1 = _subtitle.HistoryItems[listViewHistory.SelectedItems[0].Index]; HistoryItem h2 = _subtitle.HistoryItems[listViewHistory.SelectedItems[1].Index]; string descr1 = h1.ToHHMMSS() + " - " + h1.Description; - string descr2 = h1.ToHHMMSS() + " - " + h2.Description; + string descr2 = h2.ToHHMMSS() + " - " + h2.Description; using (var compareForm = new Compare()) { compareForm.Initialize(h1.Subtitle, descr1, h2.Subtitle, descr2);