You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.3 KiB
41 lines
1.3 KiB
diff -Naur pinentry-1.0.0.orig/gtk+-2/pinentry-gtk-2.c pinentry-1.0.0/gtk+-2/pinentry-gtk-2.c |
|
--- pinentry-1.0.0.orig/gtk+-2/pinentry-gtk-2.c 2016-11-07 10:55:43.000000000 +0100 |
|
+++ pinentry-1.0.0/gtk+-2/pinentry-gtk-2.c 2017-02-18 15:45:40.468599077 +0100 |
|
@@ -478,28 +478,17 @@ |
|
GtkToggleButton *button = GTK_TOGGLE_BUTTON (widget); |
|
GtkWidget *label = data; |
|
const char *text; |
|
- char *tooltip; |
|
gboolean reveal; |
|
|
|
if (!gtk_toggle_button_get_active (button) || !confirm_unhiding ()) |
|
{ |
|
text = "<span font=\"Monospace\" size=\"xx-small\">abc</span>"; |
|
- tooltip = pinentry_utf8_validate (pinentry->default_tt_visi); |
|
- if (!tooltip) |
|
- { |
|
- tooltip = g_strdup ("Make the passphrase visible"); |
|
- } |
|
gtk_toggle_button_set_active (button, FALSE); |
|
reveal = FALSE; |
|
} |
|
else |
|
{ |
|
text = "<span font=\"Monospace\" size=\"xx-small\">***</span>"; |
|
- tooltip = pinentry_utf8_validate (pinentry->default_tt_hide); |
|
- if (!tooltip) |
|
- { |
|
- tooltip = g_strdup ("Hide the passphrase"); |
|
- } |
|
reveal = TRUE; |
|
} |
|
|
|
@@ -510,8 +499,6 @@ |
|
} |
|
|
|
gtk_label_set_markup (GTK_LABEL(label), text); |
|
- gtk_widget_set_tooltip_text (GTK_WIDGET(button), tooltip); |
|
- g_free (tooltip); |
|
} |
|
|
|
|
|
|