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); } }