mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Fix entries yeeting themselves out of existance when scrolled off (#2392)
This commit is contained in:
parent
80c2985795
commit
e3498f1b9c
1 changed files with 4 additions and 1 deletions
|
|
@ -2083,7 +2083,10 @@ internal class PluginInstallerWindow : Window, IDisposable
|
||||||
const ImGuiWindowFlags childFlags = ImGuiWindowFlags.NoScrollbar | ImGuiWindowFlags.NoScrollWithMouse;
|
const ImGuiWindowFlags childFlags = ImGuiWindowFlags.NoScrollbar | ImGuiWindowFlags.NoScrollWithMouse;
|
||||||
|
|
||||||
using var pluginChild = ImRaii.Child(childId, new Vector2(ImGui.GetContentRegionAvail().X, sectionSize), false, childFlags);
|
using var pluginChild = ImRaii.Child(childId, new Vector2(ImGui.GetContentRegionAvail().X, sectionSize), false, childFlags);
|
||||||
if (!pluginChild) return false;
|
if (!pluginChild)
|
||||||
|
{
|
||||||
|
return isOpen;
|
||||||
|
}
|
||||||
|
|
||||||
var startCursor = ImGui.GetCursorPos();
|
var startCursor = ImGui.GetCursorPos();
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue