Breadcrumb bar and mouse double-click
Moderators: Hacker, petermad, Stefan2, white
Breadcrumb bar and mouse double-click
BCB is a good stuff but if you use double-click on this bar to open directory hotlist, you find that BCB will often do unwanted dir changes regarding to double-click position - to avoid such mistakes you need to aim at free right part of bar. It is quite uncomfortable.
It will be great if BCB can distinguish click and doubleclick (user wants to change folder or just to open dir hotlist).
It will be great if BCB can distinguish click and doubleclick (user wants to change folder or just to open dir hotlist).
AFAIK a click is always part of a double-click. It' s never guaranteed that a user does the second click in time. So there must always be a logocal order between single and double mouse-click. The area where the dirs can be changed may not be usable for opening the dir menu.
Anyway you can click in the right part of the path bar to open the dir menu. There is always a bit space left reserved for this task.
Anyway you can click in the right part of the path bar to open the dir menu. There is always a bit space left reserved for this task.
Yes, it is hard to distinguish click and doubleclick. So, for doubleclicks people usually use timeouts. Also Windows has BN_DBLCLK and BN_CLICKED notification messages - it can distinguish them. 
BTW, if I do a single-click on BCB, system sends WM_LBUTTONDOWN and WM_LBUTTONUP to it. If I do a doubleclick, system sends WM_LBUTTONDBLCLK message ONLY - so, we have all we need.
Dir menu opens in any part of BCB, but often after unwanted dir change. And it is more complex to aim at free part of BCB because it is much smaller than overall bar.

BTW, if I do a single-click on BCB, system sends WM_LBUTTONDOWN and WM_LBUTTONUP to it. If I do a doubleclick, system sends WM_LBUTTONDBLCLK message ONLY - so, we have all we need.

Dir menu opens in any part of BCB, but often after unwanted dir change. And it is more complex to aim at free part of BCB because it is much smaller than overall bar.
- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
But doubleclick uses left mouse button, so I don't see its relation to right mouse click.Balderstrom wrote:@MVV, I would prefer if right click could be configured to do either:
1) Copy Path to Clip
2) Edit Path
Then we don't have to be so concerned about how to click to prevent unwanted directory changes.

And anyway double click and single click are different things, and system allows to distinguish them. So I don't understand why TC on doubleclick does that it should do on single click - this events shouldn't intersect even by idea.
- Balderstrom
- Power Member
- Posts: 2148
- Joined: 2005-10-11, 10:10 UTC
It's easy enough to understand...
In windows proper most events on a single click = select
and a double click = launch/execute/open.
Whereas with the breadcrumb/address bar,
* Yes you can configure a mouse to waste the middle button, for instance, on a double click action -- but thats not the same as being able to do a manual normal double click.
I'll just do an AHK action and fix it.
In windows proper most events on a single click = select
and a double click = launch/execute/open.
Whereas with the breadcrumb/address bar,
- Hovering the mouse pointer is equivalent to "select" -> that causes the breadcrumb menu to appear after a short delay.
- Single Click = Open the path the mouse pointer is over.
* Yes you can configure a mouse to waste the middle button, for instance, on a double click action -- but thats not the same as being able to do a manual normal double click.
I'll just do an AHK action and fix it.