1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-06-05 01:09:17 +02:00

- [GUI] changed layout of buttons in stream frame;

- reverted scaling of icons.
This commit is contained in:
cage
2023-08-01 17:17:41 +02:00
parent 87bebd0f3e
commit 35e0971006
2 changed files with 7 additions and 7 deletions

View File

@@ -8,7 +8,7 @@
# E.g: a value of 2 will render the size twice larger. -2 will shrink
# the icons in half
icons.scaling = -2
icons.scaling = 1
# gemini browser

View File

@@ -114,12 +114,12 @@
(delete-button (_ "delete selected stream"))
(revive-button (_ "show selected stream"))
(close-button (_ "close")))
(gui:grid table 0 0 :sticky :sew)
(gui:grid buttons-frame 1 0 :sticky :s)
(gui:grid buttons-frame 0 0 :sticky :w)
(gui:grid table 0 1 :sticky :news)
(gui:grid reload-button 0 0 :sticky :s)
(gui:grid delete-button 0 1 :sticky :s)
(gui:grid revive-button 0 2 :sticky :s)
(gui:grid close-button 0 3 :sticky :s)
(gui:grid-columnconfigure wrapper-frame :all :weight 1)
(gui:grid delete-button 1 0 :sticky :s)
(gui:grid revive-button 2 0 :sticky :s)
(gui:grid close-button 3 0 :sticky :s)
(gui:grid-columnconfigure wrapper-frame 1 :weight 2)
(gui:grid-rowconfigure wrapper-frame :all :weight 1)
wrapper-frame))