Correct the inverted tabs scrolling
This commit is contained in:
parent
911eb325cc
commit
51ab72f715
|
@ -330,7 +330,7 @@ function RootView:on_mouse_wheel(dy, dx)
|
||||||
local idx = node:get_tab_overlapping_point(x, y)
|
local idx = node:get_tab_overlapping_point(x, y)
|
||||||
if idx then
|
if idx then
|
||||||
local delta = dx == 0.0 and dy or dx
|
local delta = dx == 0.0 and dy or dx
|
||||||
local button = delta > 0 and 2 or 1
|
local button = delta < 0 and 2 or 1
|
||||||
node:scroll_tabs(button)
|
node:scroll_tabs(button)
|
||||||
return true
|
return true
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in New Issue