diff --git a/src/adw-breakpoint-bin.c b/src/adw-breakpoint-bin.c index 1cb7317f864258522f4aa8ef1305b4cdfda7c3de..990ffd7fd1fcacf26e05b28c1500b111a32b62be 100644 --- a/src/adw-breakpoint-bin.c +++ b/src/adw-breakpoint-bin.c @@ -190,13 +190,16 @@ allocate_child (AdwBreakpointBin *self, &window_width, &window_height); if (window_width <= 0 && window_height <= 0) - g_warning ("%s %p does not have a minimum size", + g_warning ("%s %p does not have a minimum size, set the 'width-request' " + "and 'height-request' properties to specify it", G_OBJECT_TYPE_NAME (warning_widget), warning_widget); else if (window_width <= 0) - g_warning ("%s %p does not have a minimum width", + g_warning ("%s %p does not have a minimum width, set the " + "'width-request' property to specify it", G_OBJECT_TYPE_NAME (warning_widget), warning_widget); else if (window_height <= 0) - g_warning ("%s %p does not have a minimum height", + g_warning ("%s %p does not have a minimum height, set the " + "'height-request' property to specify it", G_OBJECT_TYPE_NAME (warning_widget), warning_widget); }