Alexander Ushakov
Alexander Ushakov
When I create a single watch for multiple nodes ``` python input_items = zk.get_children( inputNode ) for item_id in input_items : @zk.ChildrenWatch( '{}/{}'.format( inputNode, item_id ) ) def watch_item_children( items):...
I try to build gtk+ 3.24.14 under msys2 system on Windows with following command: ``` meson --prefix=/home/User/gtk_libs/compile/outputs/x86_64-pc-mingw32 --buildtype=release ---Dpkg_config_path=/home/User/gtk_libs/compile/outputs/x86_64-pc-mingw32/lib/pkgconfig -Ddefault_library=shared -Dwin32_backend=true -Dbuiltin_immodules=yes /home/User/gtk_libs/compile/intermediates/x86_64-pc-mingw32/gtk+ /home/User/gtk_libs/libs/gtk+ ``` As you can see I...