aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--main/src/ui/chat_input/encryption_button.vala7
2 files changed, 7 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b4fe6e7c..1365b6d2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -103,8 +103,6 @@ endif ()
# Flags for all C files
AddCFlagIfSupported(CMAKE_C_FLAGS -Wall)
-AddCFlagIfSupported(CMAKE_C_FLAGS -Wno-incompatible-pointer-types-discards-qualifiers)
-AddCFlagIfSupported(CMAKE_C_FLAGS --disable-warnings-as-errors)
AddCFlagIfSupported(CMAKE_C_FLAGS -Wextra)
AddCFlagIfSupported(CMAKE_C_FLAGS -Werror=format-security)
AddCFlagIfSupported(CMAKE_C_FLAGS -Wno-duplicate-decl-specifier)
diff --git a/main/src/ui/chat_input/encryption_button.vala b/main/src/ui/chat_input/encryption_button.vala
index 2dd35ae9..9e990d28 100644
--- a/main/src/ui/chat_input/encryption_button.vala
+++ b/main/src/ui/chat_input/encryption_button.vala
@@ -73,6 +73,13 @@ public class EncryptionButton {
private void update_encryption_menu_icon() {
set_icon(conversation.encryption == Encryption.NONE ? "dino-unencrypted" : "changes-prevent-symbolic");
+ string? encbtn_tooltip = "";
+ switch(conversation.encryption){
+ case Encryption.NONE: encbtn_tooltip = _("Your message won't be encrypted. You can click to pick an encryption method."); break;
+ case Encryption.OMEMO: encbtn_tooltip = _("Your message will be OMEMO encrypted."); break;
+ case Encryption.PGP: encbtn_tooltip = _("Your message will be PGP encrypted."); break;
+ }
+ menu_button.tooltip_text = Util.string_if_tooltips_active(encbtn_tooltip);
}
private void update_visibility() {