Skip to content

Commit

Permalink
Fix UI issues in plugin options
Browse files Browse the repository at this point in the history
  • Loading branch information
Rookiestyle committed Apr 2, 2021
1 parent cf8ae1d commit 85a3e43
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Utilities/Tools_Options.cs
Original file line number Diff line number Diff line change
Expand Up @@ -147,6 +147,7 @@ private static void AddPluginToOverview(string sPluginName, TabControl tcPlugins
lv.CheckBoxes = true;
tpOverview.Layout += TpOverview_Layout;
Label lInfo = new Label();
lInfo.AutoSize = true;
lInfo.Text = "Use the checkbox to activate/deactivate debug mode";
lInfo.Dock = DockStyle.Bottom;
uc.Controls.Add(lv);
Expand Down Expand Up @@ -234,6 +235,7 @@ private static void AddPluginLink(UserControl uc)
llUrl.Text = PluginURL;
uc.Controls.Add(llUrl);
llUrl.Dock = DockStyle.Bottom;
llUrl.AutoSize = true;
llUrl.LinkClicked += new LinkLabelLinkClickedEventHandler(PluginURLClicked);
}

Expand Down

0 comments on commit 85a3e43

Please sign in to comment.