From 4ebdf562dd4605846bed53d61f52b55ff47636eb Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sun, 24 Dec 2017 01:54:13 +0300 Subject: [PATCH] notes... Signed-off-by: Alex A. Naanou --- ui (gen4)/features/collections.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/ui (gen4)/features/collections.js b/ui (gen4)/features/collections.js index 20a3ca5d..091c6089 100755 --- a/ui (gen4)/features/collections.js +++ b/ui (gen4)/features/collections.js @@ -2595,9 +2595,11 @@ var UICollectionActions = actions.Actions({ } this.collect(gids || 'current', title) }, 2)], collectRibbon: ['Collections|Ribbon/Add $ribbon to collection...', - widgets.uiDialog(function(){ return this.addToCollection('ribbon') })], + // NOTE: this is not an alias as we need it to be marked as a dialog... + widgets.uiDialog(function(){ return this.collect('ribbon') })], collectLoaded: ['Collections/$Add loaded images to collection...', - widgets.uiDialog(function(){ return this.addToCollection('loaded') })], + // NOTE: this is not an alias as we need it to be marked as a dialog... + widgets.uiDialog(function(){ return this.collect('loaded') })], joinCollect: [ collectionGetterWrapper(function(title){ this.joinCollect(title) })],