Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: remove [Experimental] from SeStringRenderer #2144

Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,7 @@ private protected override void PrintFieldsForNodeType(bool isEditorOpen = false
EdgeStrength = 1f,
};

#pragma warning disable SeStringRenderer
ImGuiHelpers.SeStringWrapped(this.NodeText.AsSpan(), style);
#pragma warning restore SeStringRenderer
}
catch
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@

namespace Dalamud.Interface.Internal.Windows.Data.Widgets;

#pragma warning disable SeStringRenderer

/// <summary>
/// Widget for displaying AtkArrayData.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@

namespace Dalamud.Interface.Internal.Windows.Data.Widgets;

#pragma warning disable SeStringRenderer

/// <summary>
/// Widget for displaying inventory data.
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,6 @@

namespace Dalamud.Interface.Internal.Windows.Data.Widgets;

#pragma warning disable SeStringRenderer

/// <summary>
/// Widget for displaying Addon Data.
/// </summary>
Expand Down
2 changes: 0 additions & 2 deletions Dalamud/Interface/Utility/ImGuiHelpers.cs
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,6 @@ public static void ClickToCopyText(string text, string? textCopy = null, Vector4
/// <returns>Interaction result of the rendered text.</returns>
/// <remarks>This function is experimental. Report any issues to GitHub issues or to Discord #dalamud-dev channel.
/// The function definition is stable; only in the next API version a function may be removed.</remarks>
[Experimental("SeStringRenderer")]
public static SeStringDrawResult SeStringWrapped(
ReadOnlySpan<byte> sss,
scoped in SeStringDrawParams style = default,
Expand All @@ -229,7 +228,6 @@ public static SeStringDrawResult SeStringWrapped(
/// <returns>Interaction result of the rendered text.</returns>
/// <remarks>This function is experimental. Report any issues to GitHub issues or to Discord #dalamud-dev channel.
/// The function definition is stable; only in the next API version a function may be removed.</remarks>
[Experimental("SeStringRenderer")]
public static SeStringDrawResult CompileSeStringWrapped(
string text,
scoped in SeStringDrawParams style = default,
Expand Down
Loading