diff --git a/src/gitflow/ui/NotifyUtil.java b/src/gitflow/ui/NotifyUtil.java index 81798fa..e78f623 100644 --- a/src/gitflow/ui/NotifyUtil.java +++ b/src/gitflow/ui/NotifyUtil.java @@ -19,6 +19,10 @@ public static void notifySuccess(Project project, String title, String message) notify(NotificationType.INFORMATION, BALLOON_NOTIFICATION, project, title, message); } + public static void notifyInfo(Project project, String title, String message) { + notify(NotificationType.INFORMATION, TOOLWINDOW_NOTIFICATION, project, title, message); + } + public static void notifyError(Project project, String title, String message) { notify(NotificationType.ERROR, TOOLWINDOW_NOTIFICATION, project, title, message); }