Skip to content

Commit

Permalink
Newline fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Aragas committed Apr 12, 2024
1 parent 72981fd commit 6231e2a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ private void RenderInstalledModules()
{
for (var j = 0; j < _moduleAdditionalUpdateInfos[module.Id].Length; j++)
{
_imgui.Text("Update Info:\0"u8);
_imgui.TextSameLine("Update Info: \0"u8);
_imgui.Text(_moduleAdditionalUpdateInfos[module.Id][j]);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ private void RenderLoadedLoaderPlugins()
{
for (var j = 0; j < _moduleAdditionalUpdateInfos[loaderPlugin.Id].Length; j++)
{
_imgui.Text("Update Info:\0"u8);
_imgui.TextSameLine("Update Info: \0"u8);
_imgui.Text(_moduleAdditionalUpdateInfos[loaderPlugin.Id][j]);
}
}
Expand Down

0 comments on commit 6231e2a

Please sign in to comment.