Skip to content

Commit

Permalink
Allow setting/moving points at the left edge of AE grid (LMMS#4323)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hussam Eddin Alhomsi authored and Wallacoloo committed May 2, 2018
1 parent 49cc715 commit 0a41aa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/editors/AutomationEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ void AutomationEditor::mousePressEvent( QMouseEvent* mouseEvent )

int x = mouseEvent->x();

if( x > VALUES_WIDTH )
if( x >= VALUES_WIDTH )
{
// set or move value

Expand Down

0 comments on commit 0a41aa4

Please sign in to comment.