Add child in settings tab so the top doesnt scroll away.

This commit is contained in:
Ottermandias 2023-10-02 14:05:35 +02:00
parent ad5ac2c2ac
commit 36ab87d28e

View file

@ -57,10 +57,13 @@ public class SettingsTab : ITab
ImGui.NewLine(); ImGui.NewLine();
ImGui.NewLine(); ImGui.NewLine();
using (var child2 = ImRaii.Child("SettingsChild"))
{
DrawBehaviorSettings(); DrawBehaviorSettings();
DrawInterfaceSettings(); DrawInterfaceSettings();
DrawColorSettings(); DrawColorSettings();
DrawCodes(); DrawCodes();
}
MainWindow.DrawSupportButtons(_changelog.Changelog); MainWindow.DrawSupportButtons(_changelog.Changelog);
} }