This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
JUCE
mirror of
https://github.com/DISTRHO/JUCE
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
Changed a few default window sizes
tags/2021-05-28
jules
11 years ago
parent
0ed61cb1ad
commit
a4e437d0df
7 changed files
with
7 additions
and
7 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
examples/AnimationAppExample/Source/MainComponent.cpp
+1
-1
examples/AudioAppExample/Source/MainComponent.cpp
+1
-1
extras/Introjucer/Source/BinaryData/jucer_AnimatedComponentTemplate.cpp
+1
-1
extras/Introjucer/Source/BinaryData/jucer_AudioComponentTemplate.cpp
+1
-1
extras/Introjucer/Source/BinaryData/jucer_ContentCompTemplate.cpp
+1
-1
extras/Introjucer/Source/BinaryData/jucer_OpenGLComponentTemplate.cpp
+1
-1
extras/Introjucer/Source/BinaryData/jucer_OpenglComponentTemplate.cpp
+ 1
- 1
examples/AnimationAppExample/Source/MainComponent.cpp
View File
@@ -22,7 +22,7 @@ public:
//==============================================================================
MainContentComponent()
{
setSize (
500, 4
00);
setSize (
800, 6
00);
setFramesPerSecond (60);
}
+ 1
- 1
examples/AudioAppExample/Source/MainComponent.cpp
View File
@@ -25,7 +25,7 @@ public:
sampleRate (0.0),
expectedSamplesPerBlock (0)
{
setSize (
500, 4
00);
setSize (
800, 6
00);
// specify the number of input and output channels that we want to open
setAudioChannels (2, 2);
+ 1
- 1
extras/Introjucer/Source/BinaryData/jucer_AnimatedComponentTemplate.cpp
View File
@@ -22,7 +22,7 @@ public:
//==============================================================================
MainContentComponent()
{
setSize (
500, 4
00);
setSize (
800, 6
00);
setFramesPerSecond (60);
}
+ 1
- 1
extras/Introjucer/Source/BinaryData/jucer_AudioComponentTemplate.cpp
View File
@@ -22,7 +22,7 @@ public:
//==============================================================================
MainContentComponent()
{
setSize (
500, 4
00);
setSize (
800, 6
00);
// specify the number of input and output channels that we want to open
setAudioChannels (2, 2);
+ 1
- 1
extras/Introjucer/Source/BinaryData/jucer_ContentCompTemplate.cpp
View File
@@ -12,7 +12,7 @@ INCLUDE_CORRESPONDING_HEADER
//==============================================================================
CONTENTCOMPCLASS::CONTENTCOMPCLASS()
{
setSize (
5
00, 400);
setSize (
6
00, 400);
}
CONTENTCOMPCLASS::~CONTENTCOMPCLASS()
+ 1
- 1
extras/Introjucer/Source/BinaryData/jucer_OpenGLComponentTemplate.cpp
View File
@@ -22,7 +22,7 @@ public:
//==============================================================================
MainContentComponent()
{
setSize (
500, 4
00);
setSize (
800, 6
00);
}
~MainContentComponent()
+ 1
- 1
extras/Introjucer/Source/BinaryData/jucer_OpenglComponentTemplate.cpp
View File
@@ -22,7 +22,7 @@ public:
//==============================================================================
MainContentComponent()
{
setSize (
500, 4
00);
setSize (
800, 6
00);
}
~MainContentComponent()
Write
Preview
Loading…
Cancel
Save