From 204b047b0fde57b8cca74a7649c9adceb7396fbf Mon Sep 17 00:00:00 2001 From: rhenck <richard.henck@iqb.hu-berlin.de> Date: Thu, 6 Jan 2022 16:01:45 +0100 Subject: [PATCH] [editor] Add new quote to TextEditor special chars This a top/99/double quote. Also reorder the special chars a bit some it looks nicer. --- .../src/app/text-editor/rich-text-editor.component.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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 837b41ce0..e547b99bc 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 @@ -195,12 +195,13 @@ <mat-menu #specialCharsMenu="matMenu" yPosition="above"> <button mat-button (click)="insertSpecialChar(' ')" [matTooltip]="'Geschütztes Leerzeichen'">␣</button> - <button mat-button (click)="insertSpecialChar('’')">’</button> - <button mat-button (click)="insertSpecialChar('„')">„</button> - <button mat-button (click)="insertSpecialChar('“')">“</button> <button mat-button (click)="insertSpecialChar('—')">—</button> <button mat-button (click)="insertSpecialChar('♀')">♀</button> <button mat-button (click)="insertSpecialChar('♂')">♂</button> + <button mat-button (click)="insertSpecialChar('’')">’</button> + <button mat-button (click)="insertSpecialChar('„')">„</button> + <button mat-button (click)="insertSpecialChar('“')">“</button> + <button mat-button (click)="insertSpecialChar('”')">”</button> <button mat-button (click)="insertSpecialChar('µ')">µ</button> <br> <button mat-button (click)="insertSpecialChar('ç')">ç</button> -- GitLab