mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 20:52:44 +01:00
Fix FindType Property
This commit is contained in:
parent
94eaf54761
commit
7b8d405cb7
@ -40,12 +40,18 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
}
|
||||
set
|
||||
{
|
||||
if (value == FindType.CaseSensitive)
|
||||
radioButtonCaseSensitive.Checked = true;
|
||||
if (value == FindType.Normal)
|
||||
radioButtonNormal.Checked = true;
|
||||
if (value == FindType.RegEx)
|
||||
radioButtonRegEx.Checked = true;
|
||||
switch (value)
|
||||
{
|
||||
case FindType.Normal:
|
||||
radioButtonNormal.Checked = true;
|
||||
break;
|
||||
case FindType.CaseSensitive:
|
||||
radioButtonCaseSensitive.Checked = true;
|
||||
break;
|
||||
case FindType.RegEx:
|
||||
radioButtonRegEx.Checked = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user