We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm not sure I should report this to which the browser repository or the icons repository; feel free to transfer this if it's in wrong place.
The web apps page with no web apps has broken icon above the "Apps" title label:
I'm using Web 44.2 (which elementary ships)
ryo@lb450m:~$ flatpak run org.gnome.Epiphany --version Web 44.2 ryo@lb450m:~$
The icon should be shown.
I investigated with the developer tools and looks like the icon shows blank path file://
file://
Looking at the code, I guess we're missing the application-x-addon-symbolic icon and thus the path is set to file://:
application-x-addon-symbolic
ryo@lb450m:~/work/tmp/epiphany ((44.2))$ vim embed/ephy-about-handler.c …… 326 GtkIconTheme *icon_theme; 327 g_autoptr (GtkIconPaintable) paintable = NULL; 328 g_autofree char *path = NULL; 329 330 g_string_append_printf (data_str, "<html><head><title>%s</title>" 331 "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" />" 332 "<link href=\""EPHY_PAGE_TEMPLATE_ABOUT_CSS "\" rel=\"stylesheet\" type=\"text/css\">" 333 "</head><body class=\"applications-body\">", 334 _("Apps")); 335 336 icon_theme = gtk_icon_theme_get_for_display (gdk_display_get_default ()); 337 paintable = gtk_icon_theme_lookup_icon (icon_theme, 338 "application-x-addon-symbolic", 339 NULL, 340 128, 341 1, 342 GTK_TEXT_DIR_LTR, 343 0); 344 345 if (paintable) { 346 g_autoptr (GFile) file = gtk_icon_paintable_get_file (paintable); 347 348 path = g_file_get_path (file); 349 } 350 351 g_string_append_printf (data_str, 352 " <div id=\"overview\" class=\"overview-empty\">\n" 353 " <img src=\"file://%s\"/>\n" 354 " <div><h1>%s</h1></div>\n" 355 " <div><p>%s</p></div>\n" 356 " </div>\n" 357 "</body></html>\n", 358 path ? path : "", 359 /* Displayed when opening applications without any installed web apps. */ 360 _("Apps"), _("You can add your favorite website by clicking <b>Install as Web App…</b> within the page menu.")); 361 }
7.x (Horus)
Latest release (I have run all updates)
No response
The text was updated successfully, but these errors were encountered:
Ah yeah this seems like probably an issue for the icons repo. Woops
Sorry, something went wrong.
danirabbit
Successfully merging a pull request may close this issue.
What Happened?
I'm not sure I should report this to which the browser repository or the icons repository; feel free to transfer this if it's in wrong place.
The web apps page with no web apps has broken icon above the "Apps" title label:
Steps to Reproduce
I'm using Web 44.2 (which elementary ships)
Expected Behavior
The icon should be shown.
I investigated with the developer tools and looks like the icon shows blank path
file://
Looking at the code, I guess we're missing the
application-x-addon-symbolic
icon and thus the path is set tofile://
:OS Version
7.x (Horus)
Software Version
Latest release (I have run all updates)
Log Output
No response
Hardware Info
The text was updated successfully, but these errors were encountered: