This is an automated email from the git hooks/post-receive script. o c h o s i p u s h e d a c o m m i t t o b r a n c h m a s t e r in repository apps/xfce4-notifyd.
commit c7bc485223d00e180c3758c4f2b55f75ee95b05b Author: Simon Steinbeiss <[email protected]> Date: Mon Apr 22 00:00:52 2019 +0200 Smaller toolbar icons for the inline toolbar Large toolbar icons (24px) look out of place on a small inline toolbar like the one used in the log tab. --- xfce4-notifyd-config/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/xfce4-notifyd-config/main.c b/xfce4-notifyd-config/main.c index b270d43..784dbb2 100644 --- a/xfce4-notifyd-config/main.c +++ b/xfce4-notifyd-config/main.c @@ -938,19 +938,19 @@ xfce4_notifyd_config_setup_dialog(GtkBuilder *builder) gtk_widget_show_all (placeholder_label); log_widgets.log_toolbar = GTK_TOOLBAR (gtk_builder_get_object (builder, "log_toolbar")); - icon = gtk_image_new_from_icon_name ("view-refresh-symbolic", GTK_ICON_SIZE_LARGE_TOOLBAR); + icon = gtk_image_new_from_icon_name ("view-refresh-symbolic", GTK_ICON_SIZE_SMALL_TOOLBAR); log_refresh_button = gtk_tool_button_new (icon, _("Refresh")); gtk_widget_set_tooltip_text (GTK_WIDGET (log_refresh_button), _("Refresh the notification log")); gtk_toolbar_insert(log_widgets.log_toolbar, GTK_TOOL_ITEM(log_refresh_button), 0); g_signal_connect (G_OBJECT (log_refresh_button), "clicked", G_CALLBACK (xfce4_notifyd_log_refresh), &log_widgets); - icon = gtk_image_new_from_icon_name ("document-open-symbolic", GTK_ICON_SIZE_LARGE_TOOLBAR); + icon = gtk_image_new_from_icon_name ("document-open-symbolic", GTK_ICON_SIZE_SMALL_TOOLBAR); log_open_button = gtk_tool_button_new (icon, _("Open")); gtk_widget_set_tooltip_text (GTK_WIDGET (log_open_button), _("Open the notification log in an external editor")); gtk_toolbar_insert(log_widgets.log_toolbar, GTK_TOOL_ITEM(log_open_button), 1); g_signal_connect (G_OBJECT (log_open_button), "clicked", G_CALLBACK (xfce4_notifyd_log_open), log_widgets.log_listbox); - icon = gtk_image_new_from_icon_name ("edit-clear-symbolic", GTK_ICON_SIZE_LARGE_TOOLBAR); + icon = gtk_image_new_from_icon_name ("edit-clear-symbolic", GTK_ICON_SIZE_SMALL_TOOLBAR); log_clear_button = gtk_tool_button_new (icon, _("Clear")); gtk_widget_set_tooltip_text (GTK_WIDGET (log_clear_button), _("Clear the notification log")); gtk_toolbar_insert(log_widgets.log_toolbar, GTK_TOOL_ITEM(log_clear_button), 2); -- To stop receiving notification emails like this one, please contact the administrator of this repository. _______________________________________________ Xfce4-commits mailing list [email protected] https://mail.xfce.org/mailman/listinfo/xfce4-commits
