Re: [tim-janik/beast] Port Song::loop_right, Song::tick_pointer (#68)

2018-08-28 Thread Tim Janik via beast
Merged #68 into master. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/tim-janik/beast/pull/68#event-1812662311___ beast mailing list beast@gnome.org

Re: [tim-janik/beast] Port Song::loop_right, Song::tick_pointer (#68)

2018-08-28 Thread Tim Janik via beast
tim-janik commented on this pull request. Thanks a lot, minor comments inline. > + +void +SongImpl::tick_pointer (int tick) +{ + BseSong *self = as(); + + if (uint (tick) != self->tick_SL) +{ + // this property has no undo + + BSE_SEQUENCER_LOCK (); + self->tick_SL = tick; +

[tim-janik/beast] Port Song::loop_right, Song::tick_pointer (#68)

2018-08-27 Thread Stefan Westerfeld via beast
2 more properties ported to C++ You can view, comment on, or merge this pull request online at: https://github.com/tim-janik/beast/pull/68 -- Commit Summary -- * BSE: Song::loop_right: port property to C++ * BEAST-GTK: use C++ property Song::loop_right * BSE: Song::tick_pointer: port