mirror of
https://github.com/greenshot/greenshot
synced 2025-08-14 02:37:03 -07:00
BUG-1908: Made Greenshot recheck & add the external commands like Ms-Paint and Paint.NET if they are not deleted manually and not yet available. Also cleaned up some code.
This commit is contained in:
parent
35ed3b8d60
commit
6efc7796b8
49 changed files with 322 additions and 294 deletions
|
@ -33,11 +33,11 @@ namespace ExternalCommand {
|
|||
public static Image IconForCommand(string commandName) {
|
||||
Image icon = null;
|
||||
if (commandName != null) {
|
||||
if (config.commandlines.ContainsKey(commandName) && File.Exists(config.commandlines[commandName])) {
|
||||
if (config.Commandline.ContainsKey(commandName) && File.Exists(config.Commandline[commandName])) {
|
||||
try {
|
||||
icon = PluginUtils.GetCachedExeIcon(config.commandlines[commandName], 0);
|
||||
icon = PluginUtils.GetCachedExeIcon(config.Commandline[commandName], 0);
|
||||
} catch (Exception ex) {
|
||||
LOG.Warn("Problem loading icon for " + config.commandlines[commandName], ex);
|
||||
LOG.Warn("Problem loading icon for " + config.Commandline[commandName], ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue