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('&nbsp;')"
               [matTooltip]="'Geschütztes Leerzeichen'">&blank;</button>
-      <button mat-button (click)="insertSpecialChar('&rsquo;')">&rsquo;</button>
-      <button mat-button (click)="insertSpecialChar('&bdquo;')">&bdquo;</button>
-      <button mat-button (click)="insertSpecialChar('&ldquo;')">&ldquo;</button>
       <button mat-button (click)="insertSpecialChar('&#8212;')">&#8212;</button>
       <button mat-button (click)="insertSpecialChar('&female;')">&female;</button>
       <button mat-button (click)="insertSpecialChar('&male;')">&male;</button>
+      <button mat-button (click)="insertSpecialChar('&rsquo;')">&rsquo;</button>
+      <button mat-button (click)="insertSpecialChar('&bdquo;')">&bdquo;</button>
+      <button mat-button (click)="insertSpecialChar('&ldquo;')">&ldquo;</button>
+      <button mat-button (click)="insertSpecialChar('&rdquo;')">&rdquo;</button>
       <button mat-button (click)="insertSpecialChar('&micro;')">&micro;</button>
       <br>
       <button mat-button (click)="insertSpecialChar('&ccedil;')">&ccedil;</button>
-- 
GitLab