[geary/geary-0.13] Merge branch 'wip/228-signature-not-enabled' into 'master'
- From: Michael Gratton <mjog src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [geary/geary-0.13] Merge branch 'wip/228-signature-not-enabled' into 'master'
- Date: Tue, 19 Feb 2019 03:19:43 +0000 (UTC)
commit 01bfe39e4e77d59d3f2a10983b4e88938328d8bb
Author: Michael Gratton <mike vee net>
Date: Tue Feb 19 03:19:03 2019 +0000
Merge branch 'wip/228-signature-not-enabled' into 'master'
Fix new signatures added via the account editor not being used
Closes #228
See merge request GNOME/geary!113
(cherry picked from commit 22c09e8bb56e01a483e1609b554f1df4745567f1)
a2439516 Fix new signatues being added via the account editor not being used
src/client/accounts/accounts-editor-edit-pane.vala | 18 +++++++++++++-----
1 file changed, 13 insertions(+), 5 deletions(-)
---
diff --git a/src/client/accounts/accounts-editor-edit-pane.vala
b/src/client/accounts/accounts-editor-edit-pane.vala
index 0937d959..7136e52a 100644
--- a/src/client/accounts/accounts-editor-edit-pane.vala
+++ b/src/client/accounts/accounts-editor-edit-pane.vala
@@ -712,7 +712,10 @@ internal class Accounts.SignatureChangedCommand : Application.Command {
private Geary.AccountInformation account;
private string old_value;
+ private bool old_enabled;
+
private string? new_value = null;
+ private bool new_enabled = false;
public SignatureChangedCommand(ClientWebView signature_view,
@@ -721,6 +724,7 @@ internal class Accounts.SignatureChangedCommand : Application.Command {
this.account = account;
this.old_value = Geary.HTML.smart_escape(account.signature);
+ this.old_enabled = account.use_signature;
// Translators: Label used as the undo tooltip after removing
// a sender address from an account. The string substitution
@@ -731,21 +735,25 @@ internal class Accounts.SignatureChangedCommand : Application.Command {
public async override void execute(GLib.Cancellable? cancellable)
throws GLib.Error {
this.new_value = yield this.signature_view.get_html();
- update_account_signature(this.new_value);
+ this.new_enabled = !Geary.String.is_empty_or_whitespace(
+ Geary.HTML.html_to_text(this.new_value)
+ );
+ update_account_signature(this.new_value, this.new_enabled);
}
public async override void undo(GLib.Cancellable? cancellable) {
this.signature_view.load_html(this.old_value);
- update_account_signature(this.old_value);
+ update_account_signature(this.old_value, this.old_enabled);
}
public async override void redo(GLib.Cancellable? cancellable) {
this.signature_view.load_html(this.new_value);
- update_account_signature(this.new_value);
+ update_account_signature(this.new_value, this.new_enabled);
}
- private inline void update_account_signature(string value) {
- this.account.signature = value;
+ private inline void update_account_signature(string sig, bool enabled) {
+ this.account.signature = sig;
+ this.account.use_signature = enabled;
this.account.changed();
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]