From 72fd974da1da1fb9c7f80079c43829775e106020 Mon Sep 17 00:00:00 2001 From: "Geoffrey D. Bennett" Date: Wed, 26 Feb 2025 02:17:34 +1030 Subject: [PATCH] Update startup window no-startup-controls message Replace the message suggesting a kernel upgrade because the 1st Gen driver has no startup controls. --- src/window-startup.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/window-startup.c b/src/window-startup.c index e9093c1..38940c7 100644 --- a/src/window-startup.c +++ b/src/window-startup.c @@ -354,8 +354,7 @@ static void add_reset_actions( static void add_no_startup_controls_msg(GtkWidget *grid) { GtkWidget *w = big_label( - "It appears that there are no startup controls. You probably " - "need to upgrade your kernel to see something here." + "This device/driver combo appears to have no startup controls." ); gtk_grid_attach(GTK_GRID(grid), w, 0, 0, 1, 1); }