Skip to content

Commit

Permalink
Fix hidden slider text boxes
Browse files Browse the repository at this point in the history
  • Loading branch information
jatinchowdhury18 committed Mar 11, 2021
1 parent 7714257 commit 4ca2e9e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@
All notable changes to this project will be documented in
this file.

## [1.3.4] - 2021-03-11
## [1.3.5] - 2021-03-11
- Fixed bug with weird harmonic distortion for very quiet signals.
- Fixed bug where slider text boxes were hidden.

## [1.3.2] - 2021-03-07
- Fixed save/load bug in iOS.
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.15)
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.12" CACHE STRING "Minimum OS X deployment target")
set(CMAKE_CXX_STANDARD 17)
project(ChowCentaur VERSION 1.3.4)
project(ChowCentaur VERSION 1.3.5)

# Using RTNeural with XSimd backend
if(APPLE)
Expand Down
9 changes: 6 additions & 3 deletions ChowCentaur/res/gui.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,18 @@
<Slider lookAndFeel="MyLNF" parameter="gain" slider-type="rotary-horizontal-vertical"
caption="Gain" background-color="00000000" caption-color="FF2B3335"
caption-size="24" slider-text-background="00000000" slider-text-outline="FF2B3335"
slider-text="FF2B3335" slider-track="ff484856" slider-thumb="FF14BADD"/>
slider-text="FF2B3335" slider-track="ff484856" slider-thumb="FF14BADD"
slidertext-width="80" slidertext-height="20"/>
<Slider lookAndFeel="MyLNF" parameter="treble" slider-type="rotary-horizontal-vertical"
caption="Tone" background-color="00000000" caption-color="FF2B3335"
caption-size="24" slider-text-background="00000000" slider-text-outline="FF2B3335"
slider-text="FF2B3335" slider-track="ff484856" slider-thumb="FF14BADD"/>
slider-text="FF2B3335" slider-track="ff484856" slider-thumb="FF14BADD"
slidertext-width="80" slidertext-height="20"/>
<Slider lookAndFeel="MyLNF" parameter="level" slider-type="rotary-horizontal-vertical"
caption="Level" background-color="00000000" caption-color="FF2B3335"
caption-size="24" slider-text-background="00000000" slider-text-outline="FF2B3335"
slider-text="FF2B3335" slider-track="ff484856" slider-thumb="FF14BADD"/>
slider-text="FF2B3335" slider-track="ff484856" slider-thumb="FF14BADD"
slidertext-width="80" slidertext-height="20"/>
<View margin="0" padding="0" background-color="00000000" flex-direction="column">
<View background-color="00000000" flex-grow="0.2"/>
<ComboBox parameter="neural" max-height="35" margin="0" padding="0" combo-background="00000000"
Expand Down

0 comments on commit 4ca2e9e

Please sign in to comment.