Skip to content

Commit

Permalink
Showing window title in the popup title
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi committed Jan 28, 2014
1 parent 7c12981 commit 1cbcc17
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ public void run(IProgressMonitor monitor)
if (result != null) {
String message = result.getMessage();
if (message != null) {
ForgeUIPlugin.displayMessage("Forge Command",
ForgeUIPlugin.displayMessage(getWindowTitle(),
message, NotificationType.INFO);
}
if (result instanceof Failed) {
Expand All @@ -109,7 +109,7 @@ public void run(IProgressMonitor monitor)
if (exception != null) {
ForgeUIPlugin.log(exception);
ForgeUIPlugin.displayMessage(
"Forge Command", String
getWindowTitle(), String
.valueOf(exception
.getMessage()),
NotificationType.ERROR);
Expand Down

0 comments on commit 1cbcc17

Please sign in to comment.