Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 217131 | Differences between
and this patch

Collapse All | Expand All

(-)notification-daemon/src/themes/standard/theme.c (-2 / +1 lines)
Lines 610-616 create_notification(UrlClickedCb url_cli Link Here
610
							 GDK_WINDOW_TYPE_HINT_NOTIFICATION);
610
							 GDK_WINDOW_TYPE_HINT_NOTIFICATION);
611
	gtk_widget_add_events(win, GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK);
611
	gtk_widget_add_events(win, GDK_BUTTON_PRESS_MASK | GDK_BUTTON_RELEASE_MASK);
612
	gtk_widget_realize(win);
612
	gtk_widget_realize(win);
613
	gtk_widget_set_size_request(win, WIDTH, -1);
614
613
615
	g_object_set_data_full(G_OBJECT(win), "windata", windata,
614
	g_object_set_data_full(G_OBJECT(win), "windata", windata,
616
						   (GDestroyNotify)destroy_windata);
615
						   (GDestroyNotify)destroy_windata);
Lines 812-818 set_notification_text(GtkWindow *nw, con Link Here
812
	update_content_hbox_visibility(windata);
811
	update_content_hbox_visibility(windata);
813
812
814
	gtk_widget_set_size_request(
813
	gtk_widget_set_size_request(
815
		((body != NULL && *body == '\0')
814
		((body != NULL && *body != '\0')
816
		 ? windata->body_label : windata->summary_label),
815
		 ? windata->body_label : windata->summary_label),
817
		WIDTH - (IMAGE_SIZE + IMAGE_PADDING) - 10,
816
		WIDTH - (IMAGE_SIZE + IMAGE_PADDING) - 10,
818
		-1);
817
		-1);

Return to bug 217131