Branch: refs/heads/master Author: Jiří Techet techet@gmail.com Committer: GitHub noreply@github.com Date: Mon, 09 Dec 2024 11:29:45 UTC Commit: 453ece0e730d58958f4c5cf08ee7b091b43cf076 https://github.com/geany/geany/commit/453ece0e730d58958f4c5cf08ee7b091b43cf0...
Log Message: ----------- Merge pull request #4079 from techee/plugin_manager_warning
Fix GTK runtime errors generated by the plugin manager
Modified Paths: -------------- src/plugins.c
Modified: src/plugins.c 3 lines changed, 2 insertions(+), 1 deletions(-) =================================================================== @@ -1922,7 +1922,8 @@ static void pm_show_dialog(GtkMenuItem *menuitem, gpointer user_data) gtk_scrolled_window_set_shadow_type(GTK_SCROLLED_WINDOW(swin), GTK_SHADOW_IN); gtk_container_add(GTK_CONTAINER(swin), pm_widgets.tree);
- label = geany_wrap_label_new(_("Choose which plugins should be loaded at startup:")); + label = gtk_label_new(_("Choose which plugins to load:")); + gtk_misc_set_alignment(GTK_MISC(label), 0, 0.5);
/* plugin popup menu */ pm_widgets.popup_menu = gtk_menu_new();
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).