=== gewijzigd bestand src/ui/dialog/object-properties.cpp --- src/ui/dialog/object-properties.cpp 2012-10-02 20:58:12 +0000 +++ src/ui/dialog/object-properties.cpp 2012-12-19 16:59:14 +0000 @@ -69,6 +69,16 @@ subselChangedConn() { //initialize labels for the table at the bottom of the dialog + int_attrs.push_back("onclick"); + int_attrs.push_back("onmouseover"); + int_attrs.push_back("onmouseout"); + int_attrs.push_back("onmousedown"); + int_attrs.push_back("onmouseup"); + int_attrs.push_back("onmousemove"); + int_attrs.push_back("onfocusin"); + int_attrs.push_back("onfocusout"); + int_attrs.push_back("onload"); + int_labels.push_back("onclick:"); int_labels.push_back("onmouseover:"); int_labels.push_back("onmouseout:"); @@ -291,7 +301,7 @@ if (CurrentItem == NULL) { - attrTable.set_object(obj, int_labels, int_labels, (GtkWidget*)EInteractivity.gobj()); + attrTable.set_object(obj, int_labels, int_attrs, (GtkWidget*)EInteractivity.gobj()); } else { === gewijzigd bestand src/ui/dialog/object-properties.h --- src/ui/dialog/object-properties.h 2012-08-08 20:13:11 +0000 +++ src/ui/dialog/object-properties.h 2012-12-19 16:57:11 +0000 @@ -67,6 +67,7 @@ private: bool blocked; SPItem *CurrentItem; //to store the current item, for not wasting resources + std::vector int_attrs; std::vector int_labels; Gtk::Table TopTable; //the table with the object properties