Changeset 1447 for branches/eraser6/6.0
- Timestamp:
- 1/4/2010 10:20:21 AM (3 years ago)
- Location:
- branches/eraser6/6.0
- Files:
-
- 3 edited
-
. (modified) (1 prop)
-
Eraser.Manager/Plugins.cs (modified) (1 diff)
-
Eraser/SettingsPanel.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/eraser6/6.0
- Property svn:mergeinfo changed
/trunk/eraser6 merged: 1446
- Property svn:mergeinfo changed
-
branches/eraser6/6.0/Eraser.Manager/Plugins.cs
r1360 r1447 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; -
branches/eraser6/6.0/Eraser/SettingsPanel.cs
r1360 r1447 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.
