mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-11 23:54:18 +00:00
Fixed an obscure utf8 string comparison problem. Added a few C++11 tweaks. Improved VST host default folder detection. Win32 file browser filter fix. Introjucer VS2005 compiler bug workaround.
This commit is contained in:
parent
4846cbe046
commit
1a5bdda7f1
8 changed files with 26 additions and 18 deletions
|
|
@ -561,7 +561,7 @@ void MidiKeyboardComponent::drawUpDownButton (Graphics& g, int w, int h,
|
|||
case horizontalKeyboard: angle = movesOctavesUp ? 0.0f : 0.5f; break;
|
||||
case verticalKeyboardFacingLeft: angle = movesOctavesUp ? 0.25f : 0.75f; break;
|
||||
case verticalKeyboardFacingRight: angle = movesOctavesUp ? 0.75f : 0.25f; break;
|
||||
default: break;
|
||||
default: jassertfalse; angle = 0; break;
|
||||
}
|
||||
|
||||
Path path;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue