From eb66407926102de50e63b323d22afa11d0aee571 Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Wed, 23 Oct 2013 00:20:04 +0200 Subject: [PATCH] NotificationDaemon: fix more fallout Missing Gtk import for action-icon buttons. https://bugzilla.gnome.org/show_bug.cgi?id=710596 --- js/ui/notificationDaemon.js | 1 + 1 file changed, 1 insertion(+) diff --git a/js/ui/notificationDaemon.js b/js/ui/notificationDaemon.js index 22e4b9e37..b886ac396 100644 --- a/js/ui/notificationDaemon.js +++ b/js/ui/notificationDaemon.js @@ -4,6 +4,7 @@ const Clutter = imports.gi.Clutter; const GdkPixbuf = imports.gi.GdkPixbuf; const Gio = imports.gi.Gio; const GLib = imports.gi.GLib; +const Gtk = imports.gi.Gtk; const Lang = imports.lang; const Shell = imports.gi.Shell; const Mainloop = imports.mainloop;