From 67bf4bce739d2bd9fb43553fc3c374042ac8582d Mon Sep 17 00:00:00 2001 From: Ivan Boothe Date: Mon, 25 Oct 2021 18:53:28 -0700 Subject: [PATCH] No more ALL CAPS Signed-off-by: Ivan Boothe --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index f8bbdb2..02021ce 100644 --- a/main.py +++ b/main.py @@ -74,7 +74,7 @@ class KeywordQueryEventListener(EventListener): items.append( ExtensionResultItem( icon=image_path, - name=char.name + " - " + char.character, + name=char.name.capitalize() + " - " + char.character, description=char.block + " - " + char.code, on_enter=CopyToClipboardAction(char.character), )