From d4d537c186e68790faf22d3eda46e0d154e230fe Mon Sep 17 00:00:00 2001 From: jmoenig Date: Tue, 9 Apr 2013 14:11:32 +0200 Subject: [PATCH] Feedback msg when sharing / unsharing projects --- gui.js | 2 ++ history.txt | 1 + 2 files changed, 3 insertions(+) diff --git a/gui.js b/gui.js index 6689eaa8..ab7ba56a 100644 --- a/gui.js +++ b/gui.js @@ -4028,6 +4028,7 @@ ProjectDialogMorph.prototype.shareProject = function () { ) + '\n"' + proj.ProjectName + '"?', 'Share Project', function () { + myself.ide.showMessage('sharing\nproject...'); SnapCloud.reconnect( function () { SnapCloud.callService( @@ -4065,6 +4066,7 @@ ProjectDialogMorph.prototype.unshareProject = function () { ) + '\n"' + proj.ProjectName + '"?', 'Unshare Project', function () { + myself.ide.showMessage('unsharing\nproject...'); SnapCloud.reconnect( function () { SnapCloud.callService( diff --git a/history.txt b/history.txt index 0fa90471..bdc3b261 100755 --- a/history.txt +++ b/history.txt @@ -1604,3 +1604,4 @@ ______ * Morphic: Formatting options for Triggers and MenuItems (and ListItems): bold, italic * Morphic: ListMorph (items) manipulation capabilites * GUI: display shared project names bold typed in the project dialog +* GUI: Feedback msg when sharing / unsharing projects