mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-02-20 14:57:45 +01:00
fix: cs bump breaks
This commit is contained in:
parent
36b9f0b218
commit
69b4ed941f
3 changed files with 2 additions and 5 deletions
|
|
@ -586,8 +586,7 @@ internal sealed unsafe class DtrBar : IInternalDisposableService, IDtrBar
|
||||||
newTextNode->LineSpacing = 12;
|
newTextNode->LineSpacing = 12;
|
||||||
newTextNode->AlignmentFontType = 5;
|
newTextNode->AlignmentFontType = 5;
|
||||||
newTextNode->FontSize = 14;
|
newTextNode->FontSize = 14;
|
||||||
newTextNode->TextFlags = (byte)TextFlags.Edge;
|
newTextNode->TextFlags = TextFlags.Edge;
|
||||||
newTextNode->TextFlags2 = 0;
|
|
||||||
|
|
||||||
if (this.emptyString == null)
|
if (this.emptyString == null)
|
||||||
this.emptyString = Utf8String.FromString(" ");
|
this.emptyString = Utf8String.FromString(" ");
|
||||||
|
|
|
||||||
|
|
@ -243,8 +243,6 @@ internal unsafe class UiDebug
|
||||||
ImGui.Text($"BGColor: #{textNode->BackgroundColor.R:X2}{textNode->BackgroundColor.G:X2}{textNode->BackgroundColor.B:X2}{textNode->BackgroundColor.A:X2}");
|
ImGui.Text($"BGColor: #{textNode->BackgroundColor.R:X2}{textNode->BackgroundColor.G:X2}{textNode->BackgroundColor.B:X2}{textNode->BackgroundColor.A:X2}");
|
||||||
|
|
||||||
ImGui.Text($"TextFlags: {textNode->TextFlags}");
|
ImGui.Text($"TextFlags: {textNode->TextFlags}");
|
||||||
ImGui.SameLine();
|
|
||||||
ImGui.Text($"TextFlags2: {textNode->TextFlags2}");
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case NodeType.Counter:
|
case NodeType.Counter:
|
||||||
|
|
|
||||||
|
|
@ -477,7 +477,7 @@ internal class TitleScreenMenuWindow : Window, IDisposable
|
||||||
var textNode = addon->GetTextNodeById(3);
|
var textNode = addon->GetTextNodeById(3);
|
||||||
|
|
||||||
// look and feel init. should be harmless to set.
|
// look and feel init. should be harmless to set.
|
||||||
textNode->TextFlags |= (byte)TextFlags.MultiLine;
|
textNode->TextFlags |= TextFlags.MultiLine;
|
||||||
textNode->AlignmentType = AlignmentType.TopLeft;
|
textNode->AlignmentType = AlignmentType.TopLeft;
|
||||||
|
|
||||||
var containsDalamudVersionString = textNode->OriginalTextPointer.Value == textNode->NodeText.StringPtr.Value;
|
var containsDalamudVersionString = textNode->OriginalTextPointer.Value == textNode->NodeText.StringPtr.Value;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue