Skip to content

Commit

Permalink
Probability 2.0: Update mixer line graphics
Browse files Browse the repository at this point in the history
  • Loading branch information
elpescado committed Oct 8, 2018
1 parent 6765983 commit 7d712ce
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Binary file modified data/img/gray/mixerPanel/masterMixerline_background.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 4 additions & 4 deletions src/gui/src/Mixer/MixerLine.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -686,22 +686,22 @@ MasterMixerLine::MasterMixerLine(QWidget* parent)
m_pPeakLCD->setPalette( lcdPalette );

m_pHumanizeVelocityRotary = new Rotary( this, Rotary::TYPE_NORMAL, trUtf8( "Humanize velocity" ), false, false );
m_pHumanizeVelocityRotary->move( 74, 88 -64 );
m_pHumanizeVelocityRotary->move( 74, 88 -45 );
connect( m_pHumanizeVelocityRotary, SIGNAL( valueChanged(Rotary*) ), this, SLOT( rotaryChanged(Rotary*) ) );
m_pHumanizeVelocityRotary->setAction( new Action("HUMANIZE_VELOCITY_ABSOLUTE") );

m_pHumanizeTimeRotary = new Rotary( this, Rotary::TYPE_NORMAL, trUtf8( "Humanize time" ), false, false );
m_pHumanizeTimeRotary->move( 74, 125 -64);
m_pHumanizeTimeRotary->move( 74, 125 -45);
connect( m_pHumanizeTimeRotary, SIGNAL( valueChanged(Rotary*) ), this, SLOT( rotaryChanged(Rotary*) ) );
m_pHumanizeTimeRotary->setAction( new Action("HUMANIZE_TIME_ABSOLUTE") );

m_pSwingRotary = new Rotary( this, Rotary::TYPE_NORMAL, trUtf8( "Swing" ), false, false );
m_pSwingRotary->move( 74, 162 -64);
m_pSwingRotary->move( 74, 162 -45);
connect( m_pSwingRotary, SIGNAL( valueChanged(Rotary*) ), this, SLOT( rotaryChanged(Rotary*) ) );
m_pSwingRotary->setAction( new Action("SWING_ABSOLUTE") );

m_pFillValueRotary = new Rotary( this, Rotary::TYPE_NORMAL, trUtf8( "Fill" ), false, false );
m_pFillValueRotary->move( 74, 162 );
m_pFillValueRotary->move( 74, 125 +64 );
connect( m_pFillValueRotary, SIGNAL( valueChanged(Rotary*) ), this, SLOT( rotaryChanged(Rotary*) ) );
m_pFillValueRotary->setAction( new Action("FILL_VALUE_ABSOLUTE") );

Expand Down

0 comments on commit 7d712ce

Please sign in to comment.