Administrator
|
For some reason, the scrolling speed of the mouse wheel is very slow in my VW. How can I change that?
Thanks, Aik-Siong Koh |
Is it just in VW?
-- Phil Helms [hidden email] On Sun, 2013-06-02 at 02:16 -0700, askoh wrote: > For some reason, the scrolling speed of the mouse wheel is very slow in my > VW. How can I change that? > > Thanks, > Aik-Siong Koh > > > > -- > View this message in context: http://forum.world.st/VW7-9-How-to-increase-scrolling-speed-of-mouse-wheel-tp4691238.html > Sent from the VisualWorks mailing list archive at Nabble.com. > _______________________________________________ > vwnc mailing list > [hidden email] > http://lists.cs.uiuc.edu/mailman/listinfo/vwnc _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
Administrator
|
Just in VW only. No problems with other programs.
Thanks, Aik-Siong |
In reply to this post by askoh
Aik-Siong, thanks for asking about this, it's an annoyance for me as well.
You can see it in the VisualWorks Projects launcher: each click of the scroll wheel moves the list by one pixel, not one line. Increasing the number of lines per notch (Mouse control panel, Wheel tab) has no effect. This is under Windows 7. |
See ScrollValueHolder>>initialize
IMHO, the value of 1@1 there is absurd. Setting it to 10@10 yields much better results. On Jun 2, 2013, at 4:14 PM, Bob Whitefield <[hidden email]> wrote: > Aik-Siong, thanks for asking about this, it's an annoyance for me as well. > > You can see it in the VisualWorks Projects launcher: each click of the > scroll wheel moves the list by one pixel, not one line. Increasing the > number of lines per notch (Mouse control panel, Wheel tab) has no effect. > This is under Windows 7. > > > > -- > View this message in context: http://forum.world.st/VW7-9-How-to-increase-scrolling-speed-of-mouse-wheel-tp4691238p4691297.html > Sent from the VisualWorks mailing list archive at Nabble.com. > _______________________________________________ > vwnc mailing list > [hidden email] > http://lists.cs.uiuc.edu/mailman/listinfo/vwnc James Robertson http://www.jarober.com [hidden email] _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
Indeed, the scrolling wheel scrolls annoyingly slow. Thanks for bringing
this up. Maybe this can still be corrected in the upcoming 7.10 release? Regards, Steffen Am 03.06.2013, 00:35 Uhr, schrieb James Robertson <[hidden email]>: > See ScrollValueHolder>>initialize > > IMHO, the value of 1@1 there is absurd. Setting it to 10@10 yields much > better results. > > On Jun 2, 2013, at 4:14 PM, Bob Whitefield <[hidden email]> wrote: > >> Aik-Siong, thanks for asking about this, it's an annoyance for me as >> well. >> >> You can see it in the VisualWorks Projects launcher: each click of the >> scroll wheel moves the list by one pixel, not one line. Increasing the >> number of lines per notch (Mouse control panel, Wheel tab) has no >> effect. >> This is under Windows 7. >> >> >> >> -- >> View this message in context: >> http://forum.world.st/VW7-9-How-to-increase-scrolling-speed-of-mouse-wheel-tp4691238p4691297.html >> Sent from the VisualWorks mailing list archive at Nabble.com. >> _______________________________________________ >> vwnc mailing list >> [hidden email] >> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc > > James Robertson > http://www.jarober.com > [hidden email] > > > > > _______________________________________________ > vwnc mailing list > [hidden email] > http://lists.cs.uiuc.edu/mailman/listinfo/vwnc vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
Administrator
|
In reply to this post by askoh
Cincom informed me that Res101607 and Res101620 should fix the problem. They were sent to me. I don't know how Non Commercial users can get them.
Thanks, Aik-Siong Koh |
I posted a fix yesterday to the mailing list
On Jun 3, 2013, at 9:29 AM, askoh <[hidden email]> wrote: > Cincom informed me that Res101607 and Res101620 should fix the problem. They > were sent to me. I don't know how Non Commercial users can get them. > > Thanks, > Aik-Siong Koh > > > > -- > View this message in context: http://forum.world.st/VW7-9-How-to-increase-scrolling-speed-of-mouse-wheel-tp4691238p4691391.html > Sent from the VisualWorks mailing list archive at Nabble.com. > _______________________________________________ > vwnc mailing list > [hidden email] > http://lists.cs.uiuc.edu/mailman/listinfo/vwnc James Robertson http://www.jarober.com [hidden email] _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
In reply to this post by jarober
James,
you are right. We have a couple of widgets that run with a scroll grid of 1, and we have fixed some, e.g. the Bundle Structure Panel. Whenever something scrolls slowly it's worth looking whether the scroll grid is initialized with the low value. But we have other use cases where the scroll width is properly set. All sequence views use a scroll width according to the line height. In those cases we have a general scroll width of one line per wheel notch. Opposed to that, lots of applications provide a scroll height of 3 lines per notch. For those who feel that this is a more user friendly value, we have the Support Resolution Res101607 which allows to configure that. The project launcher is a case of low scroll grid initialization. I implemented a simple fix to assign a good scroll grid during #postBuildWith: but I could not get it loaded. None of the typical mechanisms to load parcels works. Finally I tried to replace the LaunchPad parcel which is stored in $(VISUALWORKS)\vw7.9.1\launchpad with a fixed version. But that didn't work either. Obviously, this parcel is only for docu purpose. All parcel loading is disabled. Since the launchpad image is a runtime image, there is no chance to fix it other than releasing a new image. Regards Holger Guhl -- Senior Consultant * Certified Scrum Master * [hidden email] Tel: +49 231 9 75 99 21 * Fax: +49 231 9 75 99 20 Georg Heeg eK Dortmund Handelsregister: Amtsgericht Dortmund A 12812 Am 03.06.2013 00:35, schrieb James Robertson: > See ScrollValueHolder>>initialize > > IMHO, the value of 1@1 there is absurd. Setting it to 10@10 yields much better results. > > On Jun 2, 2013, at 4:14 PM, Bob Whitefield<[hidden email]> wrote: > >> Aik-Siong, thanks for asking about this, it's an annoyance for me as well. >> >> You can see it in the VisualWorks Projects launcher: each click of the >> scroll wheel moves the list by one pixel, not one line. Increasing the >> number of lines per notch (Mouse control panel, Wheel tab) has no effect. >> This is under Windows 7. >> >> >> >> -- >> View this message in context: http://forum.world.st/VW7-9-How-to-increase-scrolling-speed-of-mouse-wheel-tp4691238p4691297.html >> Sent from the VisualWorks mailing list archive at Nabble.com. >> _______________________________________________ >> vwnc mailing list >> [hidden email] >> http://lists.cs.uiuc.edu/mailman/listinfo/vwnc > James Robertson > http://www.jarober.com > [hidden email] > > > > > _______________________________________________ > vwnc mailing list > [hidden email] > http://lists.cs.uiuc.edu/mailman/listinfo/vwnc > _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
As I posted on vw-dev, it'd be nice to have the launcher changed in the
upcoming 7.10 release . Am 03.06.2013, 18:20 Uhr, schrieb Holger Guhl <[hidden email]>: > James, > you are right. We have a couple of widgets that run with a scroll grid > of 1, and we have fixed some, e.g. the Bundle Structure Panel. Whenever > something scrolls slowly it's worth looking whether the scroll grid is > initialized with the low value. > But we have other use cases where the scroll width is properly set. All > sequence views use a scroll width according to the line height. In those > cases we have a general scroll width of one line per wheel notch. > Opposed to that, lots of applications provide a scroll height of 3 lines > per notch. For those who feel that this is a more user friendly value, > we have the Support Resolution Res101607 which allows to configure that. > The project launcher is a case of low scroll grid initialization. I > implemented a simple fix to assign a good scroll grid during > #postBuildWith: but I could not get it loaded. None of the typical > mechanisms to load parcels works. Finally I tried to replace the > LaunchPad parcel which is stored in $(VISUALWORKS)\vw7.9.1\launchpad > with a fixed version. But that didn't work either. Obviously, this > parcel is only for docu purpose. All parcel loading is disabled. Since > the launchpad image is a runtime image, there is no chance to fix it > other than releasing a new image. > Regards > > Holger Guhl _______________________________________________ vwnc mailing list [hidden email] http://lists.cs.uiuc.edu/mailman/listinfo/vwnc |
Free forum by Nabble | Edit this page |