Adapt focus widget check for status text in location
The location no longer a GtkComboBox.
This commit is contained in:
parent
12f353f8ea
commit
6de7c26c53
1 changed files with 2 additions and 2 deletions
|
@ -377,8 +377,8 @@ _midori_browser_set_statusbar_text (MidoriBrowser* browser,
|
|||
const gchar* text)
|
||||
{
|
||||
GtkWidget* widget = gtk_window_get_focus (GTK_WINDOW (browser));
|
||||
gboolean is_location = widget ?
|
||||
GTK_IS_COMBO_BOX (gtk_widget_get_parent (widget)) : FALSE;
|
||||
gboolean is_location = widget && GTK_IS_ENTRY (widget)
|
||||
&& GTK_IS_ALIGNMENT (gtk_widget_get_parent (widget));
|
||||
|
||||
katze_assign (browser->statusbar_text, sokoke_format_uri_for_display (text));
|
||||
|
||||
|
|
Loading…
Reference in a new issue