mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
Fix for not-working double click in spell check - thx lambdacore12 :)
Fix #7879
This commit is contained in:
parent
235ff1ef5a
commit
ae93b3204f
@ -338,6 +338,25 @@ namespace Nikse.SubtitleEdit.Controls
|
||||
}
|
||||
}
|
||||
|
||||
// ReSharper disable once InconsistentNaming
|
||||
public new event MouseEventHandler MouseDoubleClick
|
||||
{
|
||||
add
|
||||
{
|
||||
if (_listBox != null)
|
||||
{
|
||||
_listBox.MouseDoubleClick += value;
|
||||
}
|
||||
}
|
||||
remove
|
||||
{
|
||||
if (_listBox != null)
|
||||
{
|
||||
_listBox.MouseDoubleClick -= value;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public void BeginUpdate()
|
||||
{
|
||||
_listBox?.BeginUpdate();
|
||||
|
Loading…
Reference in New Issue
Block a user