From 19ccbbb304830c3625c1814c31599c0c90e88900 Mon Sep 17 00:00:00 2001 From: "Geoffrey D. Bennett" Date: Sun, 26 Nov 2023 22:56:59 +1030 Subject: [PATCH] Fix the socket widget so that it will not shrink --- src/window-routing.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/window-routing.c b/src/window-routing.c index f55837e..58cead8 100644 --- a/src/window-routing.c +++ b/src/window-routing.c @@ -347,6 +347,7 @@ static GtkWidget *make_socket_widget(void) { "/vu/b4/alsa-scarlett-gui/icons/socket.svg" ); gtk_widget_set_align(w, GTK_ALIGN_CENTER, GTK_ALIGN_CENTER); + gtk_picture_set_can_shrink(GTK_PICTURE(w), FALSE); return w; }