From 1d94f0ab1b5ac1e617b3fbc1f509fbcb48c4ddf0 Mon Sep 17 00:00:00 2001 From: m-aXimilian Date: Mon, 16 Jun 2025 13:19:28 +0200 Subject: [PATCH] init view abstractions --- src/AppGLFW.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/AppGLFW.cpp b/src/AppGLFW.cpp index e5f2da0..351569e 100644 --- a/src/AppGLFW.cpp +++ b/src/AppGLFW.cpp @@ -207,6 +207,6 @@ void pixelarium::ui::AppGLFW::LoadImageProt() { this->logger_.Debug(std::format("{}: Creating image {}", __FUNCTION__, p)); - last_id = image_view_model_->AddImage(std::make_unique(p)); + image_view_model_->AddImage(std::move(std::make_unique(p))); } }