make notification full-width
This commit is contained in:
parent
2d5e530939
commit
36cf8f3d0a
@ -55,8 +55,7 @@
|
|||||||
;; if there are no messages left, hide the windox
|
;; if there are no messages left, hide the windox
|
||||||
|
|
||||||
(fn make-window []
|
(fn make-window []
|
||||||
(let [window (Gtk.Window {:width 360
|
(let [window (Gtk.Window {:on_destroy Gtk.main_quit})
|
||||||
:on_destroy Gtk.main_quit})
|
|
||||||
box (Gtk.Box {
|
box (Gtk.Box {
|
||||||
:orientation Gtk.Orientation.VERTICAL
|
:orientation Gtk.Orientation.VERTICAL
|
||||||
})]
|
})]
|
||||||
@ -67,7 +66,10 @@
|
|||||||
(GtkLayerShell.auto_exclusive_zone_enable window)
|
(GtkLayerShell.auto_exclusive_zone_enable window)
|
||||||
(GtkLayerShell.set_margin window GtkLayerShell.Edge.TOP 1)
|
(GtkLayerShell.set_margin window GtkLayerShell.Edge.TOP 1)
|
||||||
(GtkLayerShell.set_margin window GtkLayerShell.Edge.BOTTOM 10)
|
(GtkLayerShell.set_margin window GtkLayerShell.Edge.BOTTOM 10)
|
||||||
(GtkLayerShell.set_anchor window GtkLayerShell.Edge.TOP 1))
|
|
||||||
|
(GtkLayerShell.set_anchor window GtkLayerShell.Edge.TOP 1)
|
||||||
|
(GtkLayerShell.set_anchor window GtkLayerShell.Edge.LEFT 1)
|
||||||
|
(GtkLayerShell.set_anchor window GtkLayerShell.Edge.RIGHT 1))
|
||||||
(window:hide)
|
(window:hide)
|
||||||
{:window window :box box}))
|
{:window window :box box}))
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user