From a3f550c58513455329d3939a63dba38f29513369 Mon Sep 17 00:00:00 2001 From: WerWolv Date: Mon, 11 Mar 2024 21:08:39 +0100 Subject: [PATCH] fix: Toasts not printing their message to the console correctly --- plugins/ui/include/toasts/toast_notification.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/ui/include/toasts/toast_notification.hpp b/plugins/ui/include/toasts/toast_notification.hpp index ab43a376b..dec5b6c06 100644 --- a/plugins/ui/include/toasts/toast_notification.hpp +++ b/plugins/ui/include/toasts/toast_notification.hpp @@ -48,22 +48,22 @@ namespace hex::ui { } struct ToastInfo : impl::ToastNotification { - ToastInfo(std::string message) - : ToastNotification(ImGuiExt::GetCustomColorVec4(ImGuiCustomCol_LoggerInfo), ICON_VS_INFO, "hex.ui.common.info", std::move(message)) { + explicit ToastInfo(std::string message) + : ToastNotification(ImGuiExt::GetCustomColorVec4(ImGuiCustomCol_LoggerInfo), ICON_VS_INFO, "hex.ui.common.info", message) { log::info("{}", message); } }; struct ToastWarning : impl::ToastNotification { - ToastWarning(std::string message) - : ToastNotification(ImGuiExt::GetCustomColorVec4(ImGuiCustomCol_LoggerWarning), ICON_VS_WARNING, "hex.ui.common.warning", std::move(message)) { + explicit ToastWarning(std::string message) + : ToastNotification(ImGuiExt::GetCustomColorVec4(ImGuiCustomCol_LoggerWarning), ICON_VS_WARNING, "hex.ui.common.warning", message) { log::warn("{}", message); } }; struct ToastError : impl::ToastNotification { - ToastError(std::string message) - : ToastNotification(ImGuiExt::GetCustomColorVec4(ImGuiCustomCol_LoggerError), ICON_VS_ERROR, "hex.ui.common.error", std::move(message)) { + explicit ToastError(std::string message) + : ToastNotification(ImGuiExt::GetCustomColorVec4(ImGuiCustomCol_LoggerError), ICON_VS_ERROR, "hex.ui.common.error", message) { log::error("{}", message); } };