chore(branding): 앱 표시 이름을 오늘뭐먹Z로 변경

This commit is contained in:
JiWoong Sul
2025-12-03 17:51:22 +09:00
parent d733bf664b
commit a4c7f55fc0
8 changed files with 14 additions and 14 deletions

View File

@@ -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, "lunchpick");
gtk_header_bar_set_title(header_bar, "오늘뭐먹Z");
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, "lunchpick");
gtk_window_set_title(window, "오늘뭐먹Z");
}
gtk_window_set_default_size(window, 1280, 720);