Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion SamplePlugin/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public class Configuration : IPluginConfiguration
public bool IsConfigWindowMovable { get; set; } = true;
public bool SomePropertyToBeSavedAndWithADefault { get; set; } = true;

// The below exist just to make saving less cumbersome
// The below exists just to make saving less cumbersome
public void Save()
{
Plugin.PluginInterface.SavePluginConfig(this);
Expand Down
4 changes: 2 additions & 2 deletions SamplePlugin/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public Plugin()
HelpMessage = "A useful message to display in /xlhelp"
});

// Tell the UI system that we want our windows to be drawn throught he window system
// Tell the UI system that we want our windows to be drawn through the window system
PluginInterface.UiBuilder.Draw += WindowSystem.Draw;

// This adds a button to the plugin installer entry of this plugin which allows
Expand All @@ -61,7 +61,7 @@ public Plugin()

public void Dispose()
{
// Unregister all actions to not leak anythign during disposal of plugin
// Unregister all actions to not leak anything during disposal of plugin
PluginInterface.UiBuilder.Draw -= WindowSystem.Draw;
PluginInterface.UiBuilder.OpenConfigUi -= ToggleConfigUi;
PluginInterface.UiBuilder.OpenMainUi -= ToggleMainUi;
Expand Down
Loading