mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 10:47:02 -07:00
BUG-2056: Make sure the external command doesn't use the default format if .greenshot is selected.
This commit is contained in:
parent
8f2b9a24cf
commit
19802d54c8
1 changed files with 12 additions and 18 deletions
|
@ -43,32 +43,26 @@ namespace ExternalCommand {
|
|||
_presetCommand = commando;
|
||||
}
|
||||
|
||||
public override string Designation {
|
||||
get {
|
||||
return "External " + _presetCommand.Replace(',','_');
|
||||
}
|
||||
}
|
||||
public override string Designation => "External " + _presetCommand.Replace(',','_');
|
||||
|
||||
public override string Description {
|
||||
get {
|
||||
return _presetCommand;
|
||||
}
|
||||
}
|
||||
public override string Description => _presetCommand;
|
||||
|
||||
public override IEnumerable<IDestination> DynamicDestinations() {
|
||||
yield break;
|
||||
}
|
||||
|
||||
public override Image DisplayIcon {
|
||||
get {
|
||||
return IconCache.IconForCommand(_presetCommand);
|
||||
}
|
||||
}
|
||||
public override Image DisplayIcon => IconCache.IconForCommand(_presetCommand);
|
||||
|
||||
public override ExportInformation ExportCapture(bool manuallyInitiated, ISurface surface, ICaptureDetails captureDetails) {
|
||||
ExportInformation exportInformation = new ExportInformation(Designation, Description);
|
||||
SurfaceOutputSettings outputSettings = new SurfaceOutputSettings();
|
||||
|
||||
// BUG-2056 reported a logical issue, using greenshot format as the default causes issues with the external commands.
|
||||
// If OutputFormat is Greenshot, use PNG instead.
|
||||
if (outputSettings.Format == OutputFormat.greenshot)
|
||||
{
|
||||
outputSettings.Format = OutputFormat.png;
|
||||
}
|
||||
|
||||
if (_presetCommand != null) {
|
||||
if (!config.RunInbackground.ContainsKey(_presetCommand)) {
|
||||
|
@ -154,12 +148,12 @@ namespace ExternalCommand {
|
|||
private int CallExternalCommand(string commando, string fullPath, out string output, out string error) {
|
||||
try {
|
||||
return CallExternalCommand(commando, fullPath, null, out output, out error);
|
||||
} catch (Win32Exception w32ex) {
|
||||
} catch (Win32Exception w32Ex) {
|
||||
try {
|
||||
return CallExternalCommand(commando, fullPath, "runas", out output, out error);
|
||||
} catch {
|
||||
w32ex.Data.Add("commandline", config.Commandline[_presetCommand]);
|
||||
w32ex.Data.Add("arguments", config.Argument[_presetCommand]);
|
||||
w32Ex.Data.Add("commandline", config.Commandline[_presetCommand]);
|
||||
w32Ex.Data.Add("arguments", config.Argument[_presetCommand]);
|
||||
throw;
|
||||
}
|
||||
} catch (Exception ex) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue