Catch the event when _NET_WM_NAME is changed, trigger an ecore title change

event.


SVN revision: 7546
This commit is contained in:
rbdpngn 2003-10-12 05:25:08 +00:00 committed by rbdpngn
parent 54cd8f0c92
commit e2fe7241a1
1 changed files with 1 additions and 1 deletions

View File

@ -714,7 +714,7 @@ _ecore_x_event_handle_property_notify(XEvent *xevent)
&(e->name), &(e->clas));
ecore_event_add(ECORE_X_EVENT_WINDOW_PROP_NAME_CLASS_CHANGE, e, _ecore_x_event_free_window_prop_name_class_change, NULL);
}
else if (xevent->xproperty.atom == _ecore_x_atom_wm_name)
else if ((xevent->xproperty.atom == _ecore_x_atom_wm_name) || (xevent->xproperty.atom == _ecore_x_atom_net_wm_name))
{
Ecore_X_Event_Window_Prop_Title_Change *e;