PiRSquared17 / damnvid

Automatically exported from code.google.com/p/damnvid
GNU General Public License v3.0
0 stars 0 forks source link

Youtube browser missing horizontal scroll #71

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Open youtube browser
2. Search for something
3. See how the longer titles vanishes into the right frame of the window

See attached screenshot.
There should be a horizontal scrollbar, or it should be possible to resize
the window.

Original issue reported on code.google.com by anot...@gmail.com on 24 May 2010 at 7:24

Attachments:

GoogleCodeExporter commented 9 years ago
I think the proper solution here would be to make the text wrap, not put a(n 
ugly)
horizontal scrollbar. Sadly, wxPython's HyperlinkCtrl class doesn't seem to have
wrapping support like regular text does... Annoying. Maybe it should truncate 
the
text instead and add "..." at the end of the title?

(By the way, it seems from your screenshot that you're missing the YouTube 
plugin...)

Original comment by windypo...@gmail.com on 24 May 2010 at 11:26

GoogleCodeExporter commented 9 years ago
There was some configuration issue, when I deleted the ~/.damnvid folder it was 
back
again.
If it's impossible to make the text wrap, I think scrolling and the possibility 
to
resize is better. Unless you can make the rest of the title appear as a 
tool-tip when
you hover your mouse over it? That would probably be the prettier solution.

Original comment by anot...@gmail.com on 25 May 2010 at 5:14

GoogleCodeExporter commented 9 years ago
Awesome, fix committed in r268.

The window could be resizable but the result would be very ugly. wx doesn't 
allow
text to wrap dynamically, it only has a sometext.Wrap(numberOfPixels) method. So
there would have to be an event listener to the resizing event of the window 
that
re-wraps all the text in the window manually, which would be slow and jittery.

Original comment by windypo...@gmail.com on 25 May 2010 at 5:52