From 81856dbe674bd702a58de5ffe8fa52a3b3676ac1 Mon Sep 17 00:00:00 2001 From: Rodrigo Braz Monteiro Date: Sun, 19 Aug 2007 01:36:36 +0000 Subject: [PATCH] demi`'s patch applied: Added "Effect" field to the Select Lines dialog. Originally committed to SVN as r1513. --- aegisub/changelog.txt | 1 + aegisub/dialog_selection.cpp | 2 ++ 2 files changed, 3 insertions(+) diff --git a/aegisub/changelog.txt b/aegisub/changelog.txt index 188997c09..16d9ac7bc 100644 --- a/aegisub/changelog.txt +++ b/aegisub/changelog.txt @@ -158,6 +158,7 @@ Please visit http://aegisub.net to download latest version - Changed translation assistent to use Scintilla text controls to avoid several issues, including Right-To-Left text entry. (AMZ) - Joining of two lines will no longer take the timings of any line that starts and ends at 0 into consideration. (AMZ) - Added a "new window" command to the file menu, to launch a new instance of Aegisub. (AMZ) +- Added "Effect" field to the Select Lines dialog. (demi`) = 1.10 beta - 2006.08.07 =========================== diff --git a/aegisub/dialog_selection.cpp b/aegisub/dialog_selection.cpp index c08bd7dca..8c508da1f 100644 --- a/aegisub/dialog_selection.cpp +++ b/aegisub/dialog_selection.cpp @@ -66,6 +66,7 @@ wxDialog (parent,-1,_("Select"),wxDefaultPosition,wxDefaultSize,wxCAPTION) field.Add(_("Text")); field.Add(_("Style")); field.Add(_("Actor")); + field.Add(_("Effect")); Field = new wxRadioBox(this,-1,_("In Field"),wxDefaultPosition,wxDefaultSize,field); // Dialogues/comments box @@ -149,6 +150,7 @@ bool DialogSelection::StringMatches(AssDialogue *diag) { if (field == 0) text = diag->Text; else if (field == 1) text = diag->Style; else if (field == 2) text = diag->Actor; + else if (field == 3) text = diag->Effect; // RegExp? bool isReg = false;