fix(inkhud): getEmptyTiles hands out raw pointers from owned tiles

This commit is contained in:
Ben Meadors committed 2026-08-12 18:09:47 -05:00
1 parent b80c80e7f7
commit ada62f48fc
1 file changed
+1 -1
+1 -1
View File
@@ -539,7 +539,7 @@ std::vector<InkHUD::Tile *> InkHUD::WindowManager::getEmptyTiles()
for (auto &t : userTiles) {
Applet *a = t->getAssignedApplet();
if (!a || !a->isActive())
empty.push_back(t);
empty.push_back(t.get());
}
return empty;