From 3ebb0f149d542c823e3f26fdd9cc294ab663028e Mon Sep 17 00:00:00 2001 From: Maxim Ermilov Date: Tue, 27 Oct 2009 14:54:23 +0300 Subject: [PATCH] Removing all favorites makes it impossible to add new ones Show the placeholder when all favorites are gone. https://bugzilla.gnome.org/show_bug.cgi?id=591854 --- js/ui/appDisplay.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index 1ded1bc61..db2b507e3 100644 --- a/js/ui/appDisplay.js +++ b/js/ui/appDisplay.js @@ -860,6 +860,13 @@ AppWell.prototype = { let display = new RunningWellItem(app, false); this._grid.actor.add_actor(display.actor); } + + if (this._grid.actor.get_n_children() == 1) { + let text = new Clutter.Text({ color: GenericDisplay.ITEM_DISPLAY_NAME_COLOR, + font_name: "Sans 14px", + text: _("Drag here to add favorites")}); + this._grid.actor.add_actor(text); + } }, // Draggable target interface