Skip to content

Commit

Permalink
bugfix: changed modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
DominikaLos committed Dec 4, 2024
1 parent 786662f commit 8811ab3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion GsaGH/Helpers/GH/Legend/ContourLegendManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
using OasysGH.Components;

namespace GsaGH.Helpers {
internal class ContourLegendManager {
public class ContourLegendManager {
private readonly IContourLegendConfiguration _configuration;
private readonly IContourLegend _legend;
private readonly LegendMenuBuilder _menuBuilder;
Expand Down
2 changes: 1 addition & 1 deletion GsaGH/Helpers/GH/Legend/IContourLegend.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using Grasshopper.Kernel;

namespace GsaGH.Helpers {
internal interface IContourLegend {
public interface IContourLegend {
public void DrawLegendRectangle(
IGH_PreviewArgs args, string title, string bottomText,
List<(int startY, int endY, Color gradientColor)> gradients);
Expand Down
2 changes: 1 addition & 1 deletion GsaGH/Helpers/GH/Legend/LegendMenuBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
using OasysGH.Components;

namespace GsaGH.Helpers {
internal class LegendMenuBuilder {
public class LegendMenuBuilder {
private string _scaleLegendTxt;
public delegate void SetLegendScaleDelegate(double scale);

Expand Down

0 comments on commit 8811ab3

Please sign in to comment.