From 676e1c2cdc85692da858197aafe8d8d340a2de94 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 30 Apr 2023 14:09:17 +0200 Subject: [PATCH] CertificateSettings: Add missing ellipsis on import/export buttons --- .../CertificateSettings/CertificateStoreWidget.gml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Applications/CertificateSettings/CertificateStoreWidget.gml b/Userland/Applications/CertificateSettings/CertificateStoreWidget.gml index d8bac71955..bdb6e09497 100644 --- a/Userland/Applications/CertificateSettings/CertificateStoreWidget.gml +++ b/Userland/Applications/CertificateSettings/CertificateStoreWidget.gml @@ -24,13 +24,13 @@ @GUI::Button { name: "import_button" - text: "Import" + text: "Import..." fixed_width: 80 } @GUI::Button { name: "export_button" - text: "Export" + text: "Export..." fixed_width: 80 enabled: false }