You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Ellipsize the location, keeping the suffix which is likely
* to have more relevant information, such as filename and extension.
*/
staticchar*
shorten_location (constchar*location)
This is to avoid extremely long URLs making the window very wide – obviously this wouldn't be desirable:
but the current state of things isn't really great either; if your problem is that you lack an app for dealing with a special URL scheme, you have no idea what the scheme is:
Would truncating the string by removing characters from the middle be possible instead?
Alternatively, could the entire URL be displayed, but wrapped onto multiple lines?
The text was updated successfully, but these errors were encountered:
AppChooserDialog currently truncates URLs to 40 characters for display:
xdg-desktop-portal-gtk/src/appchooserdialog.c
Lines 296 to 300 in dcbc052
This is to avoid extremely long URLs making the window very wide – obviously this wouldn't be desirable:
but the current state of things isn't really great either; if your problem is that you lack an app for dealing with a special URL scheme, you have no idea what the scheme is:
Would truncating the string by removing characters from the middle be possible instead?
Alternatively, could the entire URL be displayed, but wrapped onto multiple lines?
The text was updated successfully, but these errors were encountered: