为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

Mouse wheel to scroll document no more works (Linux - Firefox and Seamonkey)

  • 10 个回答
  • 5 人有此问题
  • 5 次查看
  • 最后回复者为 cor-el

more options

Hello,

This is a regression because it worked well in one or two previous version.

I would like to scroll the document (one full page per mouse wheel). This configuration does not work : mousewheel.withnokey.action = 1 mousewheel.withnokey.sysnumlines = false Changing these values does nothing.

More easy with seamonkey : "preferences/advanced/mouse wheel/scroll the document" does nothing !

A bad workaround : - mousewheel.min_line_scroll_amount = 999 : it works well !! - But the arrows of the vertical scroll bar moves 999 lines ! It is funny that a parameter of the mouse wheel does something on the scrollbar...

It seems that the are 2 problems : - mouse wheel to scroll the document no more works - parameter mousewheel.min_line_scroll_amount changes the scroll bar behavior

This is on linux.

Before reporting a bug I ask to know if I missed something...

Thanks.

Hello, This is a regression because it worked well in one or two previous version. I would like to scroll the document (one full page per mouse wheel). This configuration does not work : mousewheel.withnokey.action = 1 mousewheel.withnokey.sysnumlines = false Changing these values does nothing. More easy with seamonkey : "preferences/advanced/mouse wheel/scroll the document" does nothing ! A bad workaround : - mousewheel.min_line_scroll_amount = 999 : it works well !! - But the arrows of the vertical scroll bar moves 999 lines ! It is funny that a parameter of the mouse wheel does something on the scrollbar... It seems that the are 2 problems : - mouse wheel to scroll the document no more works - parameter mousewheel.min_line_scroll_amount changes the scroll bar behavior This is on linux. Before reporting a bug I ask to know if I missed something... Thanks.

由ecforum于修改

被采纳的解决方案

With your workaround and the bug 801101 you give the solution : mousewheel.default.delta_multiplier_y;9999 with the setting "scroll content" mousewheel.default.action;1

This works !

I also deleted 3 old configs that are not automatically deleted : mousewheel.withnokey.action;1 mousewheel.withnokey.numlines;10 mousewheel.withnokey.sysnumlines;false I don't know if it is important but if somebody read this thread it will maybe help.

Setting the multiplier seems needed. mousewheel.withnokey.action;1 has not the correct behavior alone. In seamonkey, "preferences/advanced/mouse wheel/scroll the document" does not set the multiplier so it does not work. It works after setting the multiplier manually.

I can again scroll big documents or photo galleries easily ! :)

I was unable to find a solution alone even reading on the net. That's why I was ready to report a bug.

Thanks Cor-el for finding a solution ! :):):)

定位到答案原位置 👍 1

所有回复 (10)

more options
more options

In this link I read : Customizing default action of "wheel" event. The value 0 means "Do nothing", 1 means "Scroll contents", 2 means "Go back or forward in the history", 3 means "Zoom in or out the contents".

mousewheel.default.action = 1 in my config...

more options

The last line in the firefox 17 paragraph is : "On Linux, the scroll unit is always by line. "

I do not understand the paragraph (my english and my knowledges...). Does this mean that there is no content scroll on linux ?

Thanks

由ecforum于修改

more options

The delta_multiplier are internally floats of type double and are converted to an integer for storing in a pref by multiplying them with 100 and are acting as percentages of the default scroll amount (i.e. 100 -> 1).

Set the mousewheel.default.delta_multiplier_y pref to 33 to change the scroll behavior from 3 lines to 1.

You can also try this:

  • mousewheel.system_scroll_override_on_root_content.enabled -> true
more options

Nothing changes with the last try.

Do you know if it works on linux ? Maybe the problem is only for me... But I tested on 2 systems with several logins... [edit] and with firefox and seamonkey...

由ecforum于修改

more options

Maybe reserve the Shift modifier for this.

  • mousewheel.with_shift.action;<strike>2</strike> 1
  • mousewheel.with_shift.delta_multiplier_y;9999


(edit: fixed action value from 2 to 1)

由cor-el于修改

more options

a typo : mousewheel.with_shift.action;1

It's a good workaround ; the arrows of the scroll bar still work.

I think I will report a bug and the developers will decide if it is a real problem.

Thanks Core-el for your answers. It's a real help and you have found a good workaround. Thanks.

more options

You're welcome

Oops, I copied the pref setting from the wrong Firefox instance (I had two extra copies open and had tested this in one).

See also:

  • bug 801101 - Needs a option to scroll over one page

由cor-el于修改

more options

选择的解决方案

With your workaround and the bug 801101 you give the solution : mousewheel.default.delta_multiplier_y;9999 with the setting "scroll content" mousewheel.default.action;1

This works !

I also deleted 3 old configs that are not automatically deleted : mousewheel.withnokey.action;1 mousewheel.withnokey.numlines;10 mousewheel.withnokey.sysnumlines;false I don't know if it is important but if somebody read this thread it will maybe help.

Setting the multiplier seems needed. mousewheel.withnokey.action;1 has not the correct behavior alone. In seamonkey, "preferences/advanced/mouse wheel/scroll the document" does not set the multiplier so it does not work. It works after setting the multiplier manually.

I can again scroll big documents or photo galleries easily ! :)

I was unable to find a solution alone even reading on the net. That's why I was ready to report a bug.

Thanks Cor-el for finding a solution ! :):):)

more options

You're welcome and thanks for reporting your findings.