tests: add tests for signal's object attribute

This commit is contained in:
Gleb Smirnov 2022-01-14 13:16:49 +03:00 committed by liferooter
parent 4d3c2569c4
commit 492b73bc47
5 changed files with 16 additions and 2 deletions

View file

@ -1,6 +1,10 @@
using Gtk 4.0;
Button {
Entry {
activate => click(button);
}
Button button {
clicked => on_button_clicked() swapped;
notify::visible => on_button_notify_visible();
}