From 56394bba7026531b6f77b555672f02ecd88c232c Mon Sep 17 00:00:00 2001 From: TheOneWithTheBraid Date: Sat, 21 May 2022 02:11:39 +0200 Subject: [PATCH] fix: properly set app title in embedder - add proper title in Linux embedder - add proper title in web embedder, Safari mobile config and add Web embedder page description Signed-off-by: TheOneWithTheBraid --- linux/my_application.cc | 4 ++-- web/index.html | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/linux/my_application.cc b/linux/my_application.cc index ccc58786..4c0501c1 100644 --- a/linux/my_application.cc +++ b/linux/my_application.cc @@ -40,12 +40,12 @@ static void my_application_activate(GApplication* application) { if (use_header_bar) { GtkHeaderBar *header_bar = GTK_HEADER_BAR(gtk_header_bar_new()); gtk_widget_show(GTK_WIDGET(header_bar)); - gtk_header_bar_set_title(header_bar, "fluffychat"); + gtk_header_bar_set_title(header_bar, "FluffyChat"); gtk_header_bar_set_show_close_button(header_bar, TRUE); gtk_window_set_titlebar(window, GTK_WIDGET(header_bar)); } else { - gtk_window_set_title(window, "fluffychat"); + gtk_window_set_title(window, "FluffyChat"); } gtk_window_set_default_size(window, 800, 600); diff --git a/web/index.html b/web/index.html index fa9257e2..4bf6331c 100644 --- a/web/index.html +++ b/web/index.html @@ -16,18 +16,18 @@ - + - + - fluffychat + FluffyChat