Changeset 1446 for trunk/eraser6
- Timestamp:
- 1/4/2010 10:17:05 AM (3 years ago)
- Location:
- trunk/eraser6
- Files:
-
- 2 edited
-
Eraser.Manager/Plugins.cs (modified) (1 diff)
-
Eraser/SettingsPanel.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/eraser6/Eraser.Manager/Plugins.cs
r1360 r1446 349 349 350 350 /// <summary> 351 /// Gets the IPlugin interface which the plugin exposed. 351 /// Gets the IPlugin interface which the plugin exposed. This may be null 352 /// if the plugin was not loaded. 352 353 /// </summary> 353 354 public IPlugin Plugin { get; internal set; } 355 356 /// <summary> 357 /// Gets whether this particular plugin is currently loaded in memory. 358 /// </summary> 359 public bool Loaded 360 { 361 get { return Plugin != null; } 362 } 354 363 355 364 private Assembly assembly; -
trunk/eraser6/Eraser/SettingsPanel.cs
r1360 r1446 353 353 if (!pluginApprovals.ContainsKey(guid)) 354 354 { 355 pluginApprovals.Add(guid, item.Checked); 356 pluginApprovalsChanged = true; 355 if (plugin.Plugin.Loaded != item.Checked) 356 { 357 pluginApprovals.Add(guid, item.Checked); 358 pluginApprovalsChanged = true; 359 } 357 360 } 358 361 else if (pluginApprovals[guid] != item.Checked)
Note: See TracChangeset
for help on using the changeset viewer.
