Open GoogleCodeExporter opened 8 years ago
Yes, this is mentioned under known issues. The thing is, I'd have to subclass
the
editor container window to handle painting in there, and it's a bit tedious (the
splitter widget itself doesn't have a HWND). I'll give it a shot when I have
some
free time.
Original comment by mihnea.balta@gmail.com
on 17 Dec 2009 at 5:02
How about a preference to hide the split widget entirely? Maybe that would not
require subclassing the container. Personally I never knew it was there until I
saw
it mentioned in the feature list for MetalScroll, so I would happily give it up
in
exchange for less confusion in the minimap.
Original comment by sieg...@gmail.com
on 17 Dec 2009 at 8:05
That's much easier. If I find it too time consuming to do the subclassing, I'll
add
that option as a workaround until I find time to do the right thing. Thanks for
the
suggestion.
Original comment by mihnea.balta@gmail.com
on 17 Dec 2009 at 8:35
[deleted comment]
I found a way to hide the splitter.
In file MetalBar.cpp, at the end of method:
void MetalBar::AdjustSize(unsigned int requiredWidth)
adding new line
vertBarPlacement.rcNormalPosition.top = -7; // new
after (line no 161)
vertBarPlacement.rcNormalPosition.left -= diff;
adds extra size at top of the scroller window so the splitter is no more
visible.
Looks like 7 is the height of the splitter.
Original comment by crystal...@gmail.com
on 25 Jan 2010 at 6:29
Original issue reported on code.google.com by
sieg...@gmail.com
on 15 Dec 2009 at 9:59