From 8811ab3e9fdf73f6f0d4659cf5dbcd2a5ddfede4 Mon Sep 17 00:00:00 2001 From: DominikaLos Date: Wed, 4 Dec 2024 10:00:43 +0100 Subject: [PATCH] bugfix: changed modifiers --- GsaGH/Helpers/GH/Legend/ContourLegendManager.cs | 2 +- GsaGH/Helpers/GH/Legend/IContourLegend.cs | 2 +- GsaGH/Helpers/GH/Legend/LegendMenuBuilder.cs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/GsaGH/Helpers/GH/Legend/ContourLegendManager.cs b/GsaGH/Helpers/GH/Legend/ContourLegendManager.cs index 0b1e4353f..fac2f4bd8 100644 --- a/GsaGH/Helpers/GH/Legend/ContourLegendManager.cs +++ b/GsaGH/Helpers/GH/Legend/ContourLegendManager.cs @@ -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; diff --git a/GsaGH/Helpers/GH/Legend/IContourLegend.cs b/GsaGH/Helpers/GH/Legend/IContourLegend.cs index d4c64cab1..02cd5ace4 100644 --- a/GsaGH/Helpers/GH/Legend/IContourLegend.cs +++ b/GsaGH/Helpers/GH/Legend/IContourLegend.cs @@ -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); diff --git a/GsaGH/Helpers/GH/Legend/LegendMenuBuilder.cs b/GsaGH/Helpers/GH/Legend/LegendMenuBuilder.cs index 9979a5916..6be216941 100644 --- a/GsaGH/Helpers/GH/Legend/LegendMenuBuilder.cs +++ b/GsaGH/Helpers/GH/Legend/LegendMenuBuilder.cs @@ -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);