Thinner separators, and double-click
Moderators: helmut, XnTriq, xnview
-
- Posts: 98
- Joined: Tue Sep 26, 2006 7:41 am
Thinner separators, and double-click
Don't you think that separators for tree panel and preview panel are too thick and they should be thinner?
Please add double-click on separator to hide/show panel.
XnView 1.90 <x>
Please add double-click on separator to hide/show panel.
XnView 1.90 <x>
-=nightflyer=-
Re: Thinner separators, and double-click
I agree: they should be no larger than the small colored handles. No need to add +2 pixels on sides...nightflyer wrote:Don't you think that separators for tree panel and preview panel are too thick and they should be thinner?

Maybe better than double-click for hiding/showing: single click with highlighted separator... (a bit like in Opera).
Olivier
Re: Thinner separators, and double-click
It was a request to add 2 pixelsnightflyer wrote:Don't you think that separators for tree panel and preview panel are too thick and they should be thinner?
Please add double-click on separator to hide/show panel.

Pierre.
Re: Thinner separators, and double-click
I can understand to enlarge the active area for selecting the separator (resize or show/hide)... but this is not the case here.xnview wrote:It was a request to add 2 pixelsSo i remove it?
I prefer a thin separation with an enlarged active area rather than the opposite as we have here...

Olivier
-
- Posts: 98
- Joined: Tue Sep 26, 2006 7:41 am
What about this: "separator should be thinner" and "button should be enlarge", BUT only on mouse over. Hope you know what I mean, enlarge "button" only on mouse (cursor) over. Then it could move the separator and double click, or/and middle button click would hide a panel. Possible? What do you think?xnview wrote:Ok, so my question, button should be enlarge, or separator should be thinner?nightflyer wrote:I agree with Olivier_G, making separators thicker has no reason. You lose space and gain nothing (because resize button stays the same size).
Dreamer
-
- Posts: 98
- Joined: Tue Sep 26, 2006 7:41 am
As I wrote, I am for "thinner spearators".
Also I am for Olivier_G idea of single-click on whole spearator, like in Opera.
Zooming Show/hide button- for me personally it is a kind of eye-candy that only disturbs. If I already pointed Show/hide button, why zoom it? Recently I have noticed there is a kind of trend for such Mac-like "improvements", for example in dock-bars, but I think they are for people who like playing with computer.
Generally auto-zooming is good when there are many small elements, to quickly look at details (like in thumbnail mode of cPicture). This is not the situation here.
Also I am for Olivier_G idea of single-click on whole spearator, like in Opera.
Zooming Show/hide button- for me personally it is a kind of eye-candy that only disturbs. If I already pointed Show/hide button, why zoom it? Recently I have noticed there is a kind of trend for such Mac-like "improvements", for example in dock-bars, but I think they are for people who like playing with computer.
Generally auto-zooming is good when there are many small elements, to quickly look at details (like in thumbnail mode of cPicture). This is not the situation here.
-=nightflyer=-
But which action has single click on whole separator if you have 2 possibilities? And how to change the size with mouse if single click is used for show/hide??nightflyer wrote:As I wrote, I am for "thinner spearators".
Also I am for Olivier_G idea of single-click on whole spearator, like in Opera.
Pierre.
-
- Posts: 98
- Joined: Tue Sep 26, 2006 7:41 am
Not important for you perhaps!nightflyer wrote:So let's forget click on separator to show/hide. This is not very important.
For me, that single click on the separator to show/hide a panel is the MOST IMPORTANT NEW FEATURE IN XNView. It is a substantial, paradigm-changing improvement to the interface and I love it!!!
Please please please please don't remove it!!!!!!!!!!!!!!
John
Ok, but:JohnFredC wrote:Not important for you perhaps!nightflyer wrote:So let's forget click on separator to show/hide. This is not very important.
For me, that single click on the separator to show/hide a panel is the MOST IMPORTANT NEW FEATURE IN XNView. It is a substantial, paradigm-changing improvement to the interface and I love it!!!
Please please please please don't remove it!!!!!!!!!!!!!!
Which action has single click on whole separator if you have 2 possibilities? And how to change the size with mouse if single click is used for show/hide??
Pierre.
Hi Pierre
The way Alpha 3 works now is perfect: click the (new) little button on a splitter to show/hide the panel, drag the splitter itself to resize.
Most splitter implementations don't respond to single clicks. So I think the user wouldn't expect anything to happen. A double-click on the splitter control is frequently hide/show (or collapse/expand), so you could add that feature to your splitter implementation:
Maybe I don't understand the question?Which action has single click on whole separator if you have 2 possibilities? And how to change the size with mouse if single click is used for show/hide??
The way Alpha 3 works now is perfect: click the (new) little button on a splitter to show/hide the panel, drag the splitter itself to resize.
Most splitter implementations don't respond to single clicks. So I think the user wouldn't expect anything to happen. A double-click on the splitter control is frequently hide/show (or collapse/expand), so you could add that feature to your splitter implementation:
Code: Select all
Procedure Splitter.OnDoubleClick();
Begin
SplitterButton.OnClick;
End
John