Skip to content

Commit 3508127

Browse files
author
tlr
committed
try macos 10.13 support
1 parent 24b9992 commit 3508127

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
cmake_minimum_required(VERSION 3.22.1)
22

33
# Change to your project name
4-
project(RipplerX VERSION 1.3.1)
4+
project(RipplerX VERSION 1.3.2)
55

66
set(CMAKE_CXX_STANDARD 17)
77
set(CMAKE_XCODE_GENERATE_SCHEME OFF)
8+
set(CMAKE_OSX_DEPLOYMENT_TARGET 10.14 CACHE STRING "Build for 10.14")
89
set_property(GLOBAL PROPERTY USE_FOLDERS ON)
910

1011
if(MSVC)

Source/PluginEditor.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ RipplerXAudioProcessorEditor::RipplerXAudioProcessorEditor (RipplerXAudioProcess
5757
sunImage, 1.0f, juce::Colours::transparentBlack,
5858
sunImage, 1.0f, juce::Colours::transparentBlack);
5959
}
60-
sun.setBounds(col+133, row+3, 20, 20);
60+
sun.setBounds(col+135, row+3, 20, 20);
6161
sun.onClick = [this] {
6262
audioProcessor.toggleTheme();
6363
loadTheme();
@@ -74,7 +74,7 @@ RipplerXAudioProcessorEditor::RipplerXAudioProcessorEditor (RipplerXAudioProcess
7474
moonImage, 1.0f, juce::Colours::transparentBlack,
7575
moonImage, 1.0f, juce::Colours::transparentBlack);
7676
}
77-
moon.setBounds(col+133, row+3, 20, 20);
77+
moon.setBounds(col+135, row+3, 20, 20);
7878
moon.onClick = [this] {
7979
audioProcessor.toggleTheme();
8080
loadTheme();

0 commit comments

Comments
 (0)