mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
Re-enable "full frame" for fcp+image - thx Anders :)
This commit is contained in:
parent
c49668fee3
commit
af311cc577
@ -1,5 +1,4 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Globalization;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
|
24
src/ui/Forms/ExportPngXml.Designer.cs
generated
24
src/ui/Forms/ExportPngXml.Designer.cs
generated
@ -109,8 +109,8 @@
|
||||
this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
|
||||
this.contextMenuStripProfile = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||
this.profilesToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.importToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.exportToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
||||
this.contextMenuStrip1.SuspendLayout();
|
||||
this.groupBoxImageSettings.SuspendLayout();
|
||||
@ -254,7 +254,7 @@
|
||||
//
|
||||
this.textBoxImagePrefix.Location = new System.Drawing.Point(354, 162);
|
||||
this.textBoxImagePrefix.Name = "textBoxImagePrefix";
|
||||
this.textBoxImagePrefix.Size = new System.Drawing.Size(317, 20);
|
||||
this.textBoxImagePrefix.Size = new System.Drawing.Size(183, 20);
|
||||
this.textBoxImagePrefix.TabIndex = 63;
|
||||
//
|
||||
// comboBoxResolution
|
||||
@ -1086,7 +1086,7 @@
|
||||
this.contextMenuStripProfile.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.profilesToolStripMenuItem});
|
||||
this.contextMenuStripProfile.Name = "contextMenuStripProfile";
|
||||
this.contextMenuStripProfile.Size = new System.Drawing.Size(181, 48);
|
||||
this.contextMenuStripProfile.Size = new System.Drawing.Size(114, 26);
|
||||
//
|
||||
// profilesToolStripMenuItem
|
||||
//
|
||||
@ -1094,23 +1094,23 @@
|
||||
this.importToolStripMenuItem,
|
||||
this.exportToolStripMenuItem});
|
||||
this.profilesToolStripMenuItem.Name = "profilesToolStripMenuItem";
|
||||
this.profilesToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.profilesToolStripMenuItem.Size = new System.Drawing.Size(113, 22);
|
||||
this.profilesToolStripMenuItem.Text = "Profiles";
|
||||
//
|
||||
// exportToolStripMenuItem
|
||||
//
|
||||
this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
|
||||
this.exportToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.exportToolStripMenuItem.Text = "Export...";
|
||||
this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
|
||||
//
|
||||
// importToolStripMenuItem
|
||||
//
|
||||
this.importToolStripMenuItem.Name = "importToolStripMenuItem";
|
||||
this.importToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.importToolStripMenuItem.Size = new System.Drawing.Size(119, 22);
|
||||
this.importToolStripMenuItem.Text = "Import...";
|
||||
this.importToolStripMenuItem.Click += new System.EventHandler(this.importToolStripMenuItem_Click);
|
||||
//
|
||||
// exportToolStripMenuItem
|
||||
//
|
||||
this.exportToolStripMenuItem.Name = "exportToolStripMenuItem";
|
||||
this.exportToolStripMenuItem.Size = new System.Drawing.Size(119, 22);
|
||||
this.exportToolStripMenuItem.Text = "Export...";
|
||||
this.exportToolStripMenuItem.Click += new System.EventHandler(this.exportToolStripMenuItem_Click);
|
||||
//
|
||||
// ExportPngXml
|
||||
//
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
|
@ -4362,7 +4362,7 @@ $DROP=[DROPVALUE]" + Environment.NewLine + Environment.NewLine +
|
||||
|
||||
labelImagePrefix.Text = LanguageSettings.Current.ExportPngXml.ImagePrefix;
|
||||
textBoxImagePrefix.Left = labelImagePrefix.Left + labelImagePrefix.Width + 3;
|
||||
textBoxImagePrefix.Width = comboBoxFrameRate.Right - textBoxImagePrefix.Left;
|
||||
textBoxImagePrefix.Width = comboBoxFrameRate.Left - textBoxImagePrefix.Left - 3;
|
||||
|
||||
buttonBorderColor.Text = LanguageSettings.Current.ExportPngXml.BorderColor;
|
||||
labelBorderWidth.Text = LanguageSettings.Current.ExportPngXml.BorderStyle;
|
||||
@ -4454,7 +4454,7 @@ $DROP=[DROPVALUE]" + Environment.NewLine + Environment.NewLine +
|
||||
bool showImageFormat = exportType == ExportFormats.Fab || exportType == ExportFormats.ImageFrame || exportType == ExportFormats.Stl || exportType == ExportFormats.Fcp || exportType == ExportFormats.BdnXml;
|
||||
if (exportType == ExportFormats.Fab || exportType == ExportFormats.BluraySup || exportType == ExportFormats.Fcp)
|
||||
{
|
||||
checkBoxFullFrameImage.Visible = exportType == ExportFormats.Fab || exportType == ExportFormats.BluraySup || exportType == ExportFormats.Fcp;
|
||||
checkBoxFullFrameImage.Visible = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user