mirror of
https://github.com/swaywm/sway.git
synced 2024-11-24 17:01:29 +00:00
swaybar: fix typo in comment
This commit is contained in:
parent
4799cb0960
commit
e4f5e7ec90
|
@ -303,7 +303,7 @@ static void wl_pointer_frame(void *data, struct wl_pointer *wl_pointer) {
|
||||||
for (uint32_t axis = 0; axis < 2; ++axis) {
|
for (uint32_t axis = 0; axis < 2; ++axis) {
|
||||||
if (seat->axis[axis].discrete_steps) {
|
if (seat->axis[axis].discrete_steps) {
|
||||||
for (uint32_t step = 0; step < seat->axis[axis].discrete_steps; ++step) {
|
for (uint32_t step = 0; step < seat->axis[axis].discrete_steps; ++step) {
|
||||||
// Honestly, it would probabyl make sense to pass in
|
// Honestly, it would probably make sense to pass in
|
||||||
// 'seat->axis[axis].value / seat->axis[axi].discrete_steps' here,
|
// 'seat->axis[axis].value / seat->axis[axi].discrete_steps' here,
|
||||||
// but it's only used to check whether it's positive or negative
|
// but it's only used to check whether it's positive or negative
|
||||||
// so I don't think it's worth the risk of rounding errors.
|
// so I don't think it's worth the risk of rounding errors.
|
||||||
|
|
Loading…
Reference in a new issue