fix(ui): keep scroll-to-bottom button on the toolbar row

This commit is contained in:
2026-05-21 14:32:25 +02:00
parent bd75f2453c
commit b5aebaad35
+4
View File
@@ -2351,6 +2351,10 @@ public sealed class ChatLogWindow : Window
if (ImGuiUtil.IconButton(FontAwesomeIcon.ArrowDown, tooltip: HellionStrings.ChatLog_ScrollToBottom_Tooltip))
_scrollToBottomRequested = true;
// Keep the pop-out button on the same toolbar row. Without this the
// button item ends the line and the pop-out drops to the next row.
ImGui.SameLine();
}
private void DrawPopOutButton(Tab tab)