From a554bd73d8080d1ca4b730205eaadf15b61cf584 Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Mon, 1 Nov 2021 14:05:14 +0100 Subject: [PATCH] [editor] TextEditor: Add whitespace to special characters menu --- .../editor/src/app/text-editor/rich-text-editor.component.html | 1 + 1 file changed, 1 insertion(+) diff --git a/projects/editor/src/app/text-editor/rich-text-editor.component.html b/projects/editor/src/app/text-editor/rich-text-editor.component.html index fb5859f5d..5e3d0e4f0 100644 --- a/projects/editor/src/app/text-editor/rich-text-editor.component.html +++ b/projects/editor/src/app/text-editor/rich-text-editor.component.html @@ -115,6 +115,7 @@ <mat-icon>emoji_symbols</mat-icon> </button> <mat-menu #specialCharsMenu="matMenu" yPosition="above"> + <button mat-button (click)="insertSpecialChar(' ')">␣</button> <button mat-button (click)="insertSpecialChar('♀')">♀</button> <button mat-button (click)="insertSpecialChar('♂')">♂</button> <button mat-button (click)="insertSpecialChar('µ')">µ</button> -- GitLab