Skip to content

Commit

Permalink
capitalize linux app title
Browse files Browse the repository at this point in the history
  • Loading branch information
Chaphasilor committed Feb 8, 2025
1 parent 1195f45 commit 532148d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions linux/my_application.cc
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ 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, "finamp");
gtk_header_bar_set_title(header_bar, "Finamp");
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, "finamp");
gtk_window_set_title(window, "Finamp");
}

gtk_window_set_default_size(window, 1280, 720);
Expand Down

0 comments on commit 532148d

Please sign in to comment.