Merge pull request #219 from georgkrause/clearclip134

sets default binding active to 1
main
Harry van Haaren 2018-05-19 16:31:24 +01:00 committed by GitHub
commit 73221aed04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@ typedef int LupppAction;
class Binding
{
public:
Binding() : status(0), data(0), action(0), active(-1),
Binding() : status(0), data(0), action(0), active(1),
track(-2),scene(-1),send(-1)
{
ID = privateID++;

View File

@ -71,7 +71,7 @@ void Jack::resetMidiBindingState()
bindingTrack = -2;
bindingScene = -1;
bindingSend = -1;
bindingActive= -1;
bindingActive= 1;
}
Jack::Jack( std::string name ) :