extensions-app: Stop setting description tooltip

We no longer ellipsize the description label, so the tooltip
no longer has a purpose.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3051>
This commit is contained in:
Florian Müllner 2023-12-19 01:54:10 +01:00 committed by Marge Bot
parent 628e41890f
commit f7c739ae4e

View File

@ -428,7 +428,6 @@ var ExtensionRow = GObject.registerClass({
const desc = this._extension.metadata.description.split('\n')[0];
this._descriptionLabel.label = desc;
this._descriptionLabel.tooltip_text = desc;
this.connect('destroy', this._onDestroy.bind(this));