hook up back button

This commit is contained in:
Daniel Barlow 2022-02-05 12:35:42 +00:00
parent bcf499a7d1
commit ade0eb8f8b

View File

@ -31,6 +31,9 @@
}) })
back (Gtk.Button { back (Gtk.Button {
:label "<-" :label "<-"
:on_clicked (fn [s]
(if (webview:can_go_back)
(webview:go_back)))
})] })]