summaryrefslogtreecommitdiff
path: root/src/widget/box.vala
diff options
context:
space:
mode:
authorAylur <[email protected]>2024-06-05 13:16:28 +0200
committerAylur <[email protected]>2024-06-05 13:16:28 +0200
commite675e9784a20bb07d33f0feb3724a2a1f072f52b (patch)
treee9593e13571b6ec1fab8462721e61f34eee924ff /src/widget/box.vala
parentca74fb7ad016f9ceee3756a973baa2d87a8aa1d6 (diff)
more widget subclasses
* levelbar * overlay * scrollable * slider
Diffstat (limited to 'src/widget/box.vala')
-rw-r--r--src/widget/box.vala1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/widget/box.vala b/src/widget/box.vala
index 482948d..9993a38 100644
--- a/src/widget/box.vala
+++ b/src/widget/box.vala
@@ -1,5 +1,6 @@
namespace Astal {
public class Box : Gtk.Box {
+ [CCode (notify = false)]
public bool vertical {
get { return orientation == Gtk.Orientation.VERTICAL; }
set { orientation = value ? Gtk.Orientation.VERTICAL : Gtk.Orientation.HORIZONTAL; }