From 09f56de320c8c22d37d25fb2dd05164d85c73fd8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Cerveau?= Date: Tue, 1 Feb 2022 11:44:35 +0100 Subject: [PATCH] app: change the app title --- src/app.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app.rs b/src/app.rs index 3bfdabb..d573d7c 100644 --- a/src/app.rs +++ b/src/app.rs @@ -104,7 +104,7 @@ impl GPSApp { .object("mainwindow") .expect("Couldn't get the main window"); window.set_application(Some(application)); - window.set_title(Some("GstPipelineStudio")); + window.set_title(Some("GStreamer Pipeline Studio")); let settings = Settings::load_settings(); window.set_size_request(settings.app_width, settings.app_height);