GNOME Bugzilla – Bug 734732
Do not show down arrow in title box in app mode
Last modified: 2014-08-13 19:02:09 UTC
In application mode, the title box is not clickable, so it's wrong to show a down arrow next to the web address. (The down arrow is used to indicate that the user can click on the title box.)
Created attachment 283315 [details] [review] Do not show down arrow in title box in app mode
Review of attachment 283315 [details] [review]: ::: src/ephy-title-box.c @@ +497,3 @@ + uri = g_strdup (label); + } else { + uri = g_strconcat (rtl ? "▾ " : label, rtl ? label : " ▾", NULL); You could move the rtl = gtk_widget_get_default_direction () == GTK_TEXT_DIR_RTL; here since the variable is only needed in this branch of the if.
Good point Attachment 283315 [details] pushed as a1350e9 - Do not show down arrow in title box in app mode