mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-26 13:12:39 +01:00
Show VobSub 'Choose language' dialog in taskbar with icon when opening from cmd line - thx Gran Berg :)
This commit is contained in:
parent
a62c1be5d5
commit
3ef4f1dd99
@ -957,7 +957,13 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
}
|
||||
if (languageStreamIds.Count > 1)
|
||||
{
|
||||
DvdSubRipChooseLanguage ChooseLanguage = new DvdSubRipChooseLanguage();
|
||||
var ChooseLanguage = new DvdSubRipChooseLanguage();
|
||||
if (ShowInTaskbar)
|
||||
{
|
||||
ChooseLanguage.Icon = (Icon)this.Icon.Clone();
|
||||
ChooseLanguage.ShowInTaskbar = true;
|
||||
ChooseLanguage.ShowIcon = true;
|
||||
}
|
||||
ChooseLanguage.Initialize(_vobSubMergedPackist, _palette, vobSubParser.IdxLanguages, string.Empty);
|
||||
Form form = _main;
|
||||
if (form == null)
|
||||
|
Loading…
Reference in New Issue
Block a user