Merge branch 'update-libhandy' into 'mainline'

Update libhandy

Closes #305

See merge request GNOME/geary!622
This commit is contained in:
Michael Gratton 2021-04-03 23:16:00 +00:00
commit 43c2fa4342
2 changed files with 1 additions and 10 deletions

View file

@ -89,7 +89,7 @@ icu_uc = dependency('icu-uc', version: '>=60')
iso_codes = dependency('iso-codes')
javascriptcoregtk = dependency('javascriptcoregtk-4.0', version: '>=' + target_webkit)
json_glib = dependency('json-glib-1.0', version: '>= 1.0')
libhandy = dependency('libhandy-1', version: '>= 0.90')
libhandy = dependency('libhandy-1', version: '>= 1.0.1')
libmath = cc.find_library('m')
libpeas = dependency('libpeas-1.0', version: '>= 1.24.0')
libpeas_gtk = dependency('libpeas-gtk-1.0', version: '>= 1.24.0')

View file

@ -948,15 +948,6 @@ public class Application.Client : Gtk.Application {
}
private MainWindow new_main_window(bool select_first_inbox) {
// Work around warning caused by GNOME/libhandy#305 which
// makes it a pita to run with G_DEBUG=fatal-warnings. Remove
// once the fix for that issue has been released and packaged.
GLib.Test.expect_message(
"GLib-GObject",
LEVEL_WARNING,
"g_object_weak_unref: couldn't find weak ref *"
);
MainWindow window = new MainWindow(this);
this.controller.register_window(window);
window.focus_in_event.connect(on_main_window_focus_in);