[geany/geany-plugins] 8bf506: Merge pull request #1029 from nomadbyte/geanyvc/251-menu-ellipsis
Frank Lanitz
git-noreply at xxxxx
Fri Nov 13 21:27:52 UTC 2020
Branch: refs/heads/master
Author: Frank Lanitz <frank at frank.uvena.de>
Committer: GitHub <noreply at github.com>
Date: Fri, 13 Nov 2020 21:27:52 UTC
Commit: 8bf506f780f8af69c9061bac4a7a80fb16895b2f
https://github.com/geany/geany-plugins/commit/8bf506f780f8af69c9061bac4a7a80fb16895b2f
Log Message:
-----------
Merge pull request #1029 from nomadbyte/geanyvc/251-menu-ellipsis
GeanyVC: Show ellipsis in menu items requiring further user input
Modified Paths:
--------------
geanyvc/src/geanyvc.c
Modified: geanyvc/src/geanyvc.c
4 lines changed, 2 insertions(+), 2 deletions(-)
===================================================================
@@ -2523,7 +2523,7 @@ add_menuitems_to_editor_menu(void)
/* Add commit item to editor menu */
if (set_editor_menu_entries == TRUE && editor_menu_commit == NULL)
{
- editor_menu_commit = gtk_menu_item_new_with_mnemonic(_("VC _Commit"));
+ editor_menu_commit = gtk_menu_item_new_with_mnemonic(_("VC _Commit..."));
gtk_container_add(GTK_CONTAINER(geany->main_widgets->editor_menu), editor_menu_commit);
g_signal_connect(editor_menu_commit, "activate",
G_CALLBACK(vccommit_activated), NULL);
@@ -2657,7 +2657,7 @@ plugin_init(G_GNUC_UNUSED GeanyData * data)
g_signal_connect(menu_vc_update, "activate", G_CALLBACK(vcupdate_activated), NULL);
/* Commit all changes */
- menu_vc_commit = gtk_menu_item_new_with_mnemonic(_("_Commit"));
+ menu_vc_commit = gtk_menu_item_new_with_mnemonic(_("_Commit..."));
gtk_container_add(GTK_CONTAINER(menu_vc_menu), menu_vc_commit);
gtk_widget_set_tooltip_text(menu_vc_commit, _("Commit changes."));
--------------
This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
More information about the Plugins-Commits
mailing list