1
0
Fork 0

- [GUI] moved toolbar's buttons to the left side.

This commit is contained in:
cage 2023-04-07 12:27:05 +02:00
parent 0aefb5e47e
commit 8ea9177f91
1 changed files with 6 additions and 6 deletions

View File

@ -744,12 +744,12 @@
(reload-button (_ "reload address"))
(go-button (_ "go to address"))
(up-button (_ "one level up")))
(gui:grid back-button 0 1 :sticky :nsw)
(gui:grid iri-entry 0 2 :sticky :we :padx +minimum-padding+)
(gui:grid go-button 0 3 :sticky :e)
(gui:grid reload-button 0 4 :sticky :e)
(gui:grid up-button 0 5 :sticky :e)
(gui:grid-columnconfigure object 2 :weight 2)
(gui:grid back-button 0 0 :sticky :nsw)
(gui:grid reload-button 0 1 :sticky :nsw)
(gui:grid up-button 0 2 :sticky :nsw)
(gui:grid iri-entry 0 3 :sticky :nswe :padx +minimum-padding+)
(gui:grid go-button 0 4 :sticky :nsw)
(gui:grid-columnconfigure object 3 :weight 2)
object))
(defclass toc-frame (gui:frame)