From 42781c1c62e1c7c3dd783f3304fd6baef712197f Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Sat, 1 May 2010 01:07:00 +0000 Subject: [PATCH] Make the shift times history display one-based frame numbers when shifting the selection onwards. Updates #1098 Originally committed to SVN as r4255. --- aegisub/src/dialog_shift_times.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aegisub/src/dialog_shift_times.cpp b/aegisub/src/dialog_shift_times.cpp index ad2ac3035..2d4be2eda 100644 --- a/aegisub/src/dialog_shift_times.cpp +++ b/aegisub/src/dialog_shift_times.cpp @@ -282,7 +282,7 @@ void DialogShiftTimes::OnOK(wxCommandEvent &event) { // Selection range if (affect == 0) message << _("all"); - else if (affect == 2) message << wxString::Format(_("from %i onward"),sel[0]); + else if (affect == 2) message << wxString::Format(_("from %i onward"),sel[0]+1); else { // This huge block of code prints the selected ranges of subs message << _("sel "); int last = sel[0]-1;