Posts: 43
Threads: 11
Joined: Apr 2022
Reputation:
0
11-20-2024, 08:51 PM
(This post was last modified: 11-20-2024, 08:58 PM by Cobalt.)
you mean like click on something then wait 3 or 4 seconds then click again?
Afraid I've never used it like that, I've always double clicked. Why I didn't see any difference.
But yes, apparently before you could wait (probably indefinitely) between clicks and it would open a file or change directory. But now you do have to double click.
Posts: 4,020
Threads: 181
Joined: Apr 2022
Reputation:
225
Yeah, I never like double clicking it makes my index finger twitchy when done often.
But really only .5 sec if that much between single clicks. I am wondering if this change was done on purpose it seems like an artifact of some other change.
b = b + ...
Posts: 191
Threads: 13
Joined: Apr 2022
Reputation:
53
Well B+,
good news I've identified the change responsible for the different behavior, it's the addition of the
_ANDALSO timeElapsedSince#(firstClickTime#) < 0.3#
part in line 14339 in file source/ide/ide_methods.bas, it's part of SUB ideobjupdate.
Bad news, that SUB handles the object updates in ALL kinds of dialog boxes and the mentioned change was required to better distinguish between single click objects, click and hold objects and double click objects in regard to catch stray clicks from falling through from one object type to another and maybe accidentially trigger an unintended action on that other object.
In short the change needs to be kept in place for now, probably a complete rewrite of that entire SUB or eventually even the entire legacy dialogs system in the future may organize things better, but that would be a lot of work and certainly happens not very soon.
On the other hand I think double clicks on list box items are pretty common anyways.
Posts: 4,020
Threads: 181
Joined: Apr 2022
Reputation:
225
Thanks for tracking that down Rho. At least I know why I have to double click quicker now.
b = b + ...
Posts: 4,020
Threads: 181
Joined: Apr 2022
Reputation:
225
Why is my Recent List of Files never going past 19 items.
I am losing the order I did things and what I did!
oddly the slow printing has resolved. but one session I had strangely named folder stuck in open file dialog.
This version seems shoddy!
b = b + ...
Posts: 191
Threads: 13
Joined: Apr 2022
Reputation:
53
12-05-2024, 02:50 PM
(This post was last modified: 12-05-2024, 02:50 PM by RhoSigma.)
It's also to note, that since v3.14.0 the recent files and search string histories are globally shared between all running IDE instances.
Hence if you open a file in one instance, then that file goes automatically to the top of the recent list in all other instances too.
Same with search strings, each new search string entered in any instance is immediately available for selection in all other instances too.