From f1a3f292fdd72761a5431358d292a0928931d8e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=87a=C4=9Fatay=20Yi=C4=9Fit=20=C5=9Eahin?= Date: Thu, 23 Aug 2018 01:30:38 +0300 Subject: [PATCH] Set window title from the correct place Fixes #70 --- src/MainWindow.vala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MainWindow.vala b/src/MainWindow.vala index 746a200..676d475 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -62,6 +62,7 @@ public class Tootle.MainWindow: Gtk.Window { header = new Gtk.HeaderBar (); header.show_close_button = true; + header.title = "Tootle"; header.custom_title = button_mode; header.pack_start (button_back); header.pack_start (button_toot); @@ -92,7 +93,6 @@ public class Tootle.MainWindow: Gtk.Window { public MainWindow (Gtk.Application application) { Object (application: application, icon_name: "com.github.bleakgrey.tootle", - title: "Tootle", resizable: true ); window_position = WindowPosition.CENTER;