fix(ui): window title Ch∆In Studio (was F∆I); de-dup federation add-satellite

- linux/macOS window chrome read 'F∆I Studio' (rename leftover) → 'Ch∆In Studio'.
- The federation page showed 'Add satellite' twice when empty (FAB + empty-state
  button); drop the empty-state button, the FAB carries the action.

Signed-off-by: flemming-it <stefan.a.flemming@googlemail.com>
This commit is contained in:
flemming-it 2026-06-18 12:53:35 +02:00
parent a8feb159ce
commit ee4a0f6c62
4 changed files with 9 additions and 11 deletions

View file

@ -45,11 +45,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, "F\u2206I Studio");
gtk_header_bar_set_title(header_bar, "Ch\u2206In Studio");
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, "F\u2206I Studio");
gtk_window_set_title(window, "Ch\u2206In Studio");
}
gtk_window_set_default_size(window, 1280, 900);