Skip to content

Commit

Permalink
some more ui fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
zynskeywolf committed Jan 2, 2024
1 parent 4ac2cd2 commit f87fbb5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions plugins/Flanger/FlangerControls.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ FlangerControls::FlangerControls( FlangerEffect *effect ) :
m_effect ( effect ),
m_delayTimeModel(0.001, 0.0001, 0.050, 0.0001, this, tr( "Delay samples" ) ),
m_lfoFrequencyModel( 0.25, 0.01, 60, 0.0001, 60000.0, this, tr( "LFO frequency" ) ),
m_lfoAmountModel( 0.0, 0.0, 0.0025, 0.0001, this, tr( "Seconds" ) ),
m_lfoAmountModel( 0.0, 0.0, 0.0025, 0.0001, this, tr( "Amount" ) ),
m_lfoPhaseModel( 90.0, 0.0, 360.0, 0.0001, this, tr( "Stereo phase" ) ),
m_feedbackModel( 0.0, -1.0, 1.0, 0.0001, this, tr( "Regen" ) ),
m_feedbackModel( 0.0, -1.0, 1.0, 0.0001, this, tr( "Feedback" ) ),
m_whiteNoiseAmountModel( 0.0, 0.0, 0.05, 0.0001, this, tr( "Noise" ) ),
m_invertFeedbackModel ( false, this, tr( "Invert" ) )

Expand Down
2 changes: 1 addition & 1 deletion plugins/Organic/Organic.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -563,7 +563,7 @@ OscillatorObject::OscillatorObject( Model * _parent, int _index ) :
m_panModel( DefaultPanning, PanningLeft, PanningRight, 1.0f,
this, tr( "Osc %1 panning" ).arg( _index + 1 ) ),
m_detuneModel( 0.0f, -1200.0f, 1200.0f, 1.0f,
this, tr( "Osc %1 fine detuning left" ).arg( _index + 1 ) )
this, tr( "Osc %1 stereo detuning" ).arg( _index + 1 ) )
{
}

Expand Down
4 changes: 2 additions & 2 deletions src/gui/editors/AutomationEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1424,8 +1424,8 @@ void AutomationEditor::paintEvent(QPaintEvent * pe )
p.drawText( VALUES_WIDTH + 20, TOP_MARGIN + 40,
width() - VALUES_WIDTH - 20 - SCROLLBAR_SIZE,
grid_height - 40, Qt::TextWordWrap,
tr( "Please open an automation clip with "
"the context menu of a control!" ) );
tr( "Please open an automation clip by "
"double-clicking on it!" ) );
}

// TODO: Get this out of paint event
Expand Down

0 comments on commit f87fbb5

Please sign in to comment.