From 4eec7413c740104e1c5031c94cb3936b3ff728cd Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Sun, 2 Oct 2011 12:04:30 -0400 Subject: [PATCH] Revert "lookingGlass: Show extension state in gnome-shell" This reverts commit 32dc24c59b81da23befdb0876465f588168fd382, as it caused a string break. https://bugzilla.gnome.org/show_bug.cgi?id=660494 --- data/theme/gnome-shell.css | 2 +- js/ui/lookingGlass.js | 12 ++++++++---- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/data/theme/gnome-shell.css b/data/theme/gnome-shell.css index 9072212fe..ca39e4906 100644 --- a/data/theme/gnome-shell.css +++ b/data/theme/gnome-shell.css @@ -907,7 +907,7 @@ StTooltip StLabel { font-weight: bold; } -.lg-extension-meta { +.lg-extension-actions { spacing: 6px; } diff --git a/js/ui/lookingGlass.js b/js/ui/lookingGlass.js index 9a57c1ecd..ac51a4dcf 100644 --- a/js/ui/lookingGlass.js +++ b/js/ui/lookingGlass.js @@ -738,23 +738,27 @@ Extensions.prototype = { text: meta.description || 'No description' }); box.add(description, { expand: true }); - let metaBox = new St.BoxLayout({ style_class: 'lg-extension-meta' }); + let metaBox = new St.BoxLayout(); box.add(metaBox); let stateString = this._stateToString(meta.state); let state = new St.Label({ style_class: 'lg-extension-state', text: this._stateToString(meta.state) }); - metaBox.add(state); + + let actionsContainer = new St.Bin({ x_align: St.Align.END }); + metaBox.add(actionsContainer); + let actionsBox = new St.BoxLayout({ style_class: 'lg-extension-actions' }); + actionsContainer.set_child(actionsBox); let viewsource = new Link.Link({ label: _("View Source") }); viewsource.actor._extensionMeta = meta; viewsource.actor.connect('clicked', Lang.bind(this, this._onViewSource)); - metaBox.add(viewsource.actor); + actionsBox.add(viewsource.actor); if (meta.url) { let webpage = new Link.Link({ label: _("Web Page") }); webpage.actor._extensionMeta = meta; webpage.actor.connect('clicked', Lang.bind(this, this._onWebPage)); - metaBox.add(webpage.actor); + actionsBox.add(webpage.actor); } let viewerrors = new Link.Link({ label: _("Show Errors") });