From 00205e584786688ae28623948484d660eaa7c247 Mon Sep 17 00:00:00 2001 From: bleakgrey Date: Tue, 24 Apr 2018 13:00:55 +0300 Subject: [PATCH] Kinda fix notifications icon size --- src/MainWindow.vala | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/MainWindow.vala b/src/MainWindow.vala index 59a2bfd..9c9471f 100644 --- a/src/MainWindow.vala +++ b/src/MainWindow.vala @@ -75,6 +75,9 @@ public class Tootle.MainWindow: Gtk.Window { header.button_mode.append (img); view.image = img; secondary_stack.add_named(view, view.get_name ()); + + if (view is NotificationsView) + img.pixel_size = 20; // For some reason Notifications icon is too small without this } }