From 4b2f649215c0a59c6dac709d246270c692b4775e Mon Sep 17 00:00:00 2001 From: goat Date: Mon, 10 Apr 2023 22:53:35 +0200 Subject: [PATCH] feedback for profile imports --- .../Internal/Windows/PluginInstaller/ProfileManagerWidget.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dalamud/Interface/Internal/Windows/PluginInstaller/ProfileManagerWidget.cs b/Dalamud/Interface/Internal/Windows/PluginInstaller/ProfileManagerWidget.cs index 005e38040..0545b1656 100644 --- a/Dalamud/Interface/Internal/Windows/PluginInstaller/ProfileManagerWidget.cs +++ b/Dalamud/Interface/Internal/Windows/PluginInstaller/ProfileManagerWidget.cs @@ -69,10 +69,12 @@ internal class ProfileManagerWidget try { profman.ImportProfile(ImGui.GetClipboardText()); + Service.Get().AddNotification("Profile successfully imported!", type: NotificationType.Success); } catch (Exception ex) { Log.Error(ex, "Could not import profile"); + Service.Get().AddNotification("Could not import profile.", type: NotificationType.Error); } }