Fix Growdirection (#6761)

This commit is contained in:
Reppan
2026-06-18 05:07:25 +02:00
committed by GitHub
parent bbb4c64991
commit d7393015f5
+1 -1
View File
@@ -52,7 +52,7 @@ void Window::Draw() {
for (int index = 0; index < notifications.size(); ++index) {
auto& notification = notifications[index];
int inverseIndex = -ABS(index - (static_cast<int>(notifications.size()) - 1));
int inverseIndex = ABS(index - (static_cast<int>(notifications.size()) - 1));
ImGui::SetNextWindowViewport(vp->ID);
if (notification.remainingTime < 4.0f) {