diff --git a/aegisub/base_grid.cpp b/aegisub/base_grid.cpp index 84367625d..20a73f699 100644 --- a/aegisub/base_grid.cpp +++ b/aegisub/base_grid.cpp @@ -428,7 +428,7 @@ void BaseGrid::DrawImage(wxDC &dc) { strings.Add(wxString::Format(_T("%i"),curDiag->Layer)); if (byFrame) { strings.Add(wxString::Format(_T("%i"),VFR_Output.GetFrameAtTime(curDiag->Start.GetMS(),true))); - strings.Add(wxString::Format(_T("%i"),VFR_Output.GetFrameAtTime(curDiag->End.GetMS(),true))); + strings.Add(wxString::Format(_T("%i"),VFR_Output.GetFrameAtTime(curDiag->End.GetMS(),false))); } else { strings.Add(curDiag->Start.GetASSFormated()); diff --git a/aegisub/changelog.txt b/aegisub/changelog.txt index 436bf8168..6aa8bb0f5 100644 --- a/aegisub/changelog.txt +++ b/aegisub/changelog.txt @@ -67,7 +67,7 @@ Please visit http://aegisub.net to download latest version - Scrollbar in main subs grid didn't always allow scrolling through all the subs (jfs) - Added a "Auto Save on Every Change" option to config.dat (default false), that automatically saves the files whenever you change anything. (AMZ) - Fixed line selection after pasting. (AMZ) -- Times can now be copy and pasted with ctrl+c and Ctrl+V, as well as from context menu, in the time edit boxes. (AMZ) +- Times can now be copy and pasted with Ctrl+C and Ctrl+V, as well as from context menu, in the time edit boxes. (AMZ) - Plain-text lines can now be pasted into the grid. They will be inserted as default lines with the text as their content. (AMZ) - Added Paste Over function, which allows you to paste subtitle lines over others, overwriting the fields of your choice. (AMZ) - Added global hotkey for Video Play (default Ctrl+P). (AMZ) @@ -124,6 +124,7 @@ Please visit http://aegisub.net to download latest version - Added a "Scale Border and Shadow" check box to script properties dialog. (AMZ) - Fixed drawing of inactive lines in audio display to prevent it from being drawn over selection. (AMZ) - Commiting text now commits times as well. (AMZ) +- Fixed display of end frames on the subtitles grid, when set to frame mode. (demi) = 1.10 beta - 2006.08.07 =========================== diff --git a/aegisub/dialog_style_editor.cpp b/aegisub/dialog_style_editor.cpp index acdf9490e..d89f7a37f 100644 --- a/aegisub/dialog_style_editor.cpp +++ b/aegisub/dialog_style_editor.cpp @@ -134,6 +134,7 @@ DialogStyleEditor::DialogStyleEditor (wxWindow *parent, AssStyle *_style, Subtit colorAlpha[2] = new wxSpinCtrl(this,TEXT_ALPHA_3,_T(""),wxDefaultPosition,wxSize(60,20),wxSP_ARROW_KEYS,0,255,style->outline.a); colorAlpha[3] = new wxSpinCtrl(this,TEXT_ALPHA_4,_T(""),wxDefaultPosition,wxSize(60,20),wxSP_ARROW_KEYS,0,255,style->shadow.a); for (int i=0;i<3;i++) margin[i] = new wxSpinCtrl(this,TEXT_MARGIN_L+i,_T(""),wxDefaultPosition,wxSize(60,20),wxSP_ARROW_KEYS,0,9999,style->Margin[i]); + margin[3] = 0; Alignment = new wxRadioBox(this, RADIO_ALIGNMENT, _("Alignment"), wxDefaultPosition, wxDefaultSize, 9, alignValues, 3, wxRA_SPECIFY_COLS); Outline = new wxTextCtrl(this,TEXT_OUTLINE,_T(""),wxDefaultPosition,wxSize(40,20),0,wxTextValidator(wxFILTER_NUMERIC,&OutlineValue)); Shadow = new wxTextCtrl(this,TEXT_SHADOW,_T(""),wxDefaultPosition,wxSize(40,20),0,wxTextValidator(wxFILTER_NUMERIC,&ShadowValue)); @@ -599,6 +600,7 @@ void DialogStyleEditor::OnPreviewColourChange (wxCommandEvent &event) { /////////////////////////////////// // Command event to update preview void DialogStyleEditor::OnCommandPreviewUpdate (wxCommandEvent &event) { + if (!IsShownOnScreen()) return; UpdateWorkStyle(); SubsPreview->SetStyle(work); event.Skip(); diff --git a/aegisub/subs_grid.h b/aegisub/subs_grid.h index 0cbd740c7..24ff1ce2a 100644 --- a/aegisub/subs_grid.h +++ b/aegisub/subs_grid.h @@ -164,6 +164,6 @@ enum { MENU_SET_VIDEO_TO_START, MENU_SET_VIDEO_TO_END, MENU_GRID_END, - MENU_SHOW_COL = 1250, - MENU_AUDIOCLIP + MENU_AUDIOCLIP, + MENU_SHOW_COL = 1250 // Don't put anything after this };