HTMLEditorLinkPopover: Change button label to not clash on mnemonic
The 'u' latter is already used by the "URI" label, thus change the "Update" mnemonic to something else. The 'a' was used for the "Add", it can be used for the "Update" as well.
This commit is contained in:
@ -122,7 +122,7 @@ e_html_editor_link_popover_show (GtkWidget *widget)
|
||||
e_content_editor_link_get_properties (cnt_editor, &href, &text, &name);
|
||||
if ((href && *href) || (name && *name)) {
|
||||
gtk_entry_set_text (GTK_ENTRY (self->uri_entry), href);
|
||||
gtk_button_set_label (GTK_BUTTON (self->save_button), _("_Update"));
|
||||
gtk_button_set_label (GTK_BUTTON (self->save_button), _("Upd_ate"));
|
||||
} else {
|
||||
gtk_button_set_label (GTK_BUTTON (self->save_button), _("_Add"));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user