mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-26 13:12:39 +01:00
Merge pull request #4961 from OmrSi/make-empty-from-current-patch
Don't Make Empty Translation when no subtitle is loaded
This commit is contained in:
commit
0d5615b819
@ -25661,6 +25661,12 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
|
||||
private void ToolStripMenuItemMakeEmptyFromCurrentClick(object sender, EventArgs e)
|
||||
{
|
||||
if (!IsSubtitleLoaded)
|
||||
{
|
||||
DisplaySubtitleNotLoadedMessage();
|
||||
return;
|
||||
}
|
||||
|
||||
if (ContinueNewOrExit())
|
||||
{
|
||||
bool isOriginalVisible = SubtitleListview1.IsOriginalTextColumnVisible;
|
||||
|
Loading…
Reference in New Issue
Block a user