Merge pull request #1729 from elsid/fix_utf8_encoding

Fix UTF-8 econding
This commit is contained in:
Bret Curtis 2018-06-03 18:29:54 +02:00 committed by GitHub
commit 896825e71d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -268,11 +268,11 @@ namespace ICS
ctrl->setIgnoreAutoReverse(true);
if(mouseBinderItem.direction == Control::INCREASE)
{
ctrl->setValue( float( (evt.state.Z.abs) / float(evt.state.¿width?) ) );
ctrl->setValue( float( (evt.state.Z.abs) / float(evt.state.¿width?) ) );
}
else if(mouseBinderItem.direction == Control::DECREASE)
{
ctrl->setValue( float( (1 - evt.state.Z.abs) / float(evt.state.¿width?) ) );
ctrl->setValue( float( (1 - evt.state.Z.abs) / float(evt.state.¿width?) ) );
}
}*/
}

View file

@ -23,7 +23,7 @@ distribution.
*/
/*
* THIS FILE WAS ALTERED BY Tyge Løvset, 7. April 2005.
* THIS FILE WAS ALTERED BY Tyge Løvset, 7. April 2005.
*/