Advertisement
Guest User

Untitled

a guest
Feb 25th, 2016
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
QML 0.60 KB | None | 0 0
  1. if (mouse.y < toolbarheight * -2 && mouse.y > toolbarheight * -3) {
  2.      tabListOverlay.list.currentIndex = tabListOverlay.list.count - 1
  3.      tabListOverlay.curIndex = tabListOverlay.list.count - 1
  4. }
  5. if (mouse.y < toolbarheight * -3 && mouse.y > toolbarheight * -4) {
  6.      tabListOverlay.list.currentIndex = tabListOverlay.list.count - 2
  7.      tabListOverlay.curIndex = tabListOverlay.list.count - 2
  8. }
  9. if (mouse.y < toolbarheight * -4 && mouse.y > toolbarheight * -5) {
  10.      tabListOverlay.list.currentIndex = tabListOverlay.list.count - 3
  11.      tabListOverlay.curIndex = tabListOverlay.list.count - 3
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement