app: consistently use GdNotification
Always use the notification widget from libgd instead of our own internal copy. https://bugzilla.gnome.org/show_bug.cgi?id=693330
This commit is contained in:
parent
be78782626
commit
437a84ff5c
2 changed files with 4 additions and 4 deletions
2
libgd
2
libgd
|
@ -1 +1 @@
|
|||
Subproject commit ee7333b87b57d9c5f0ff614c11e43bd37d6a30ce
|
||||
Subproject commit 3b110dd27b65e5dc6591bfcbbf1799f549ce0d34
|
|
@ -447,7 +447,7 @@ public class Contacts.App : Gtk.Application {
|
|||
}
|
||||
|
||||
public void show_message (string message) {
|
||||
var notification = new Gtk.Notification ();
|
||||
var notification = new Gd.Notification ();
|
||||
|
||||
var g = new Grid ();
|
||||
g.set_column_spacing (8);
|
||||
|
@ -508,7 +508,7 @@ public class Contacts.App : Gtk.Application {
|
|||
done_button.hide ();
|
||||
contacts_pane.set_edit_mode (false);
|
||||
|
||||
var notification = new Gtk.Notification ();
|
||||
var notification = new Gd.Notification ();
|
||||
|
||||
var g = new Grid ();
|
||||
g.set_column_spacing (8);
|
||||
|
@ -547,7 +547,7 @@ public class Contacts.App : Gtk.Application {
|
|||
};
|
||||
|
||||
private void contacts_linked (string? main_contact, string linked_contact, LinkOperation operation) {
|
||||
var notification = new Gtk.Notification ();
|
||||
var notification = new Gd.Notification ();
|
||||
|
||||
var g = new Grid ();
|
||||
g.set_column_spacing (8);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue