Skip to content

Commit

Permalink
Bugfix for the toolbar
Browse files Browse the repository at this point in the history
  • Loading branch information
SfietKonstantin committed Sep 30, 2015
1 parent 0758c82 commit 595c230
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/qml/pages/Toolbar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Rectangle {
property double ratio: (internal.isSplit ? 2 : 1)
width: view.cellWidth * container.columnCount
height: Theme.paddingMedium / 2
x: ((mainView.contentX - mainView.originX) / view.capacity * container.columnCount - (view.contentX - view.originX)) / ratio
x: ((mainView.contentX - mainView.originX) / view.capacity * container.columnCount / ratio) - (view.contentX - view.originX)
}
}

Expand Down

0 comments on commit 595c230

Please sign in to comment.