mirror of https://codeberg.org/cage/tinmop/
- [GUI] updated address bar when loading a gemlog feed.
This commit is contained in:
parent
4519aa756e
commit
5629c25ba6
|
@ -98,7 +98,9 @@
|
|||
title
|
||||
subtitle)))
|
||||
(client-main-window:clean-gemtext gui-goodies:*main-frame*)
|
||||
(client-main-window::collect-ir-lines url main-window parsed-gemlog-entries)))))))
|
||||
(client-main-window::collect-ir-lines url main-window parsed-gemlog-entries)
|
||||
(client-main-window:set-address-bar-text main-window url)
|
||||
(client-main-window::set-gemlog-toolbar-button-appearance main-window url)))))))
|
||||
|
||||
(defun init-window (master main-window)
|
||||
(gui:with-toplevel (toplevel :master master :title (_ "Gemlogs"))
|
||||
|
|
|
@ -165,9 +165,12 @@
|
|||
(ev:with-enqueued-process-and-unblock ()
|
||||
(set-bookmark-button-false main-window)))
|
||||
(ev:with-enqueued-process-and-unblock ()
|
||||
(set-gemlog-toolbar-button-appearance main-window iri))))
|
||||
|
||||
(defun set-gemlog-toolbar-button-appearance (main-window iri)
|
||||
(if (comm:make-request :gemini-gemlog-subscribed-p 1 iri)
|
||||
(set-subscribe-button-subscribed main-window)
|
||||
(set-subscribe-button-unsubscribed main-window)))))
|
||||
(set-subscribe-button-unsubscribed main-window)))
|
||||
|
||||
(defun start-streaming-thread (main-window iri
|
||||
&key
|
||||
|
|
Loading…
Reference in New Issue