From f7c739ae4eb5eb42147fccb2c9d4ff9a53309e46 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 19 Dec 2023 01:54:10 +0100 Subject: [PATCH] extensions-app: Stop setting description tooltip We no longer ellipsize the description label, so the tooltip no longer has a purpose. Part-of: --- subprojects/extensions-app/js/main.js | 1 - 1 file changed, 1 deletion(-) diff --git a/subprojects/extensions-app/js/main.js b/subprojects/extensions-app/js/main.js index e9a3183d2..63ff972c4 100644 --- a/subprojects/extensions-app/js/main.js +++ b/subprojects/extensions-app/js/main.js @@ -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));