mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Fix theme issues with regex context menu
This commit is contained in:
parent
52496910a2
commit
78a978d7e1
@ -302,6 +302,12 @@ namespace Nikse.SubtitleEdit.Logic
|
|||||||
cm.Items.Add(l.OneOrMore, null, delegate { textBox.SelectedText = "+"; });
|
cm.Items.Add(l.OneOrMore, null, delegate { textBox.SelectedText = "+"; });
|
||||||
cm.Items.Add(l.InCharacterGroup, null, delegate { textBox.SelectedText = "[test]"; });
|
cm.Items.Add(l.InCharacterGroup, null, delegate { textBox.SelectedText = "[test]"; });
|
||||||
cm.Items.Add(l.NotInCharacterGroup, null, delegate { textBox.SelectedText = "[^test]"; });
|
cm.Items.Add(l.NotInCharacterGroup, null, delegate { textBox.SelectedText = "[^test]"; });
|
||||||
|
|
||||||
|
if (Configuration.Settings.General.UseDarkTheme)
|
||||||
|
{
|
||||||
|
DarkTheme.SetDarkTheme(cm);
|
||||||
|
}
|
||||||
|
|
||||||
return cm;
|
return cm;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user