Page 1 of 1

Elided filepaths do not have tooltips

Posted: Mon Jan 26, 2015 7:07 pm
by jharper
I often have filepaths that are fairly deep and become elided ("[Drive]:\[Path]\[Path]...\[Path]\filename.ext"). Unfortunately, this means that I can't see the full path to the file. In most software, a tooltip will popup displaying the full path and filename. This should be a relatively easy add when populating the menu list:

Code: Select all

QString filepath = /*something*/;
QAction menuAct = /*something*/;
menuAct->setText(filepath);
menuAct->setToolTip(filepath);

Re: Elided filepaths do not have tooltips

Posted: Sat Jan 31, 2015 4:00 am
by XnTriq
The tooltips can be customized: Tools » Settings... » Browser » Browser » Insert >>

Code: Select all

{Directory}{Filename With Ext}

Re: Elided filepaths do not have tooltips

Posted: Mon Feb 09, 2015 7:15 pm
by jharper
That's my bad. I meant there are no tooltips for the files in the recent files list.

Re: Elided filepaths do not have tooltips

Posted: Wed Feb 25, 2015 9:46 am
by xnview
so you would like a tooltip for the recent file menu entries??

Re: Elided filepaths do not have tooltips

Posted: Mon Mar 09, 2015 11:50 pm
by jharper
Correct. Since long filepaths are elided, a non-elided filepath in a tooltip would be beneficial.