demi`'s patch applied: Added "Effect" field to the Select Lines dialog.

Originally committed to SVN as r1513.
This commit is contained in:
Rodrigo Braz Monteiro 2007-08-19 01:36:36 +00:00
parent 1ffa8c5a3a
commit 81856dbe67
2 changed files with 3 additions and 0 deletions

View file

@ -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 ===========================

View file

@ -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;