Branch: refs/heads/master Author: Enrico Tröger enrico.troeger@uvena.de Committer: Enrico Tröger enrico.troeger@uvena.de Date: Sun, 09 Jun 2024 11:16:06 UTC Commit: 5d487fc95cddaa56763ffc6e135c7ffe30788c64 https://github.com/geany/geany-plugins/commit/5d487fc95cddaa56763ffc6e135c7f...
Log Message: ----------- Addons: Hide status icon on startup until Geany has started
This avoids showing the status icon without an icon on startup and even if it is disabled while Geany is starting.
Modified Paths: -------------- addons/src/ao_systray.c
Modified: addons/src/ao_systray.c 1 lines changed, 1 insertions(+), 0 deletions(-) =================================================================== @@ -189,6 +189,7 @@ static void ao_systray_init(AoSystray *self) const gchar *icon_name;
priv->icon = gtk_status_icon_new(); + gtk_status_icon_set_visible(priv->icon, FALSE); icon_name = gtk_window_get_icon_name(GTK_WINDOW(geany->main_widgets->window)); if (icon_name) /* Geany >= 1.23 */ gtk_status_icon_set_from_icon_name(priv->icon, icon_name);
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).
plugins-commits@lists.geany.org