From 1a918769ac60c94ced662fe9348a5ee8fe32d8cc Mon Sep 17 00:00:00 2001 From: Michael James Gratton Date: Wed, 7 Feb 2018 16:39:30 +1100 Subject: [PATCH] Fix RTL hinting in the composer after the WebKit2 port broke it. --- src/client/composer/composer-web-view.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/client/composer/composer-web-view.vala b/src/client/composer/composer-web-view.vala index 816de42c..59baf4bd 100644 --- a/src/client/composer/composer-web-view.vala +++ b/src/client/composer/composer-web-view.vala @@ -144,17 +144,17 @@ public class ComposerWebView : ClientWebView { string quote, bool top_posting, bool is_draft) { - const string HTML_PRE = """"""; + const string HTML_PRE = """"""; const string HTML_POST = """"""; const string BODY_PRE = """ -
"""; +
"""; const string BODY_POST = """
"""; const string SIGNATURE = """ -
%s
+
%s
"""; const string QUOTE = """ -

%s
+

%s
"""; const string CURSOR = "

"; const string SPACER = "

";