feat: increase scroll keybind speed

This commit is contained in:
electria 2026-08-10 12:27:51 -07:00
commit d925059ef4
Signed by: electria
SSH key fingerprint: SHA256:8LlB3ucPbBHqozqkhsNbaV5oG3SlzzqUj8FZDL6IPQs

View file

@ -150,7 +150,7 @@ impl State {
"main", "main",
widget::operation::AbsoluteOffset { widget::operation::AbsoluteOffset {
x: 0., x: 0.,
y: if modifiers.shift() { 100. } else { 30. }, y: if modifiers.shift() { 500. } else { 100. },
}, },
); );
} }
@ -162,7 +162,7 @@ impl State {
"main", "main",
widget::operation::AbsoluteOffset { widget::operation::AbsoluteOffset {
x: 0., x: 0.,
y: if modifiers.shift() { -100. } else { -30. }, y: if modifiers.shift() { -500. } else { -100. },
}, },
); );
} }