diff options
Diffstat (limited to 'src/bin/egui_gui/propview.c')
-rw-r--r-- | src/bin/egui_gui/propview.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/bin/egui_gui/propview.c b/src/bin/egui_gui/propview.c index 9b53d6c..401c160 100644 --- a/src/bin/egui_gui/propview.c +++ b/src/bin/egui_gui/propview.c | |||
@@ -133,6 +133,12 @@ _property_item_content_get(It_Data *it_data, Eo *box) | |||
133 | eo_do(obj, eo_key_data_set(_STR_EDITOR, pfd, free)); | 133 | eo_do(obj, eo_key_data_set(_STR_EDITOR, pfd, free)); |
134 | evas_object_event_callback_add(obj, EVAS_CALLBACK_DEL, _pfd_del, NULL); | 134 | evas_object_event_callback_add(obj, EVAS_CALLBACK_DEL, _pfd_del, NULL); |
135 | 135 | ||
136 | /* forbid changing of value in "resize_object_add"*/ | ||
137 | if (prop && value && (!strcmp(prop_name_get(prop), RESIZE_OBJECT_ADD))) | ||
138 | { | ||
139 | eo_do(obj, elm_obj_widget_disabled_set(EINA_TRUE)); | ||
140 | } | ||
141 | |||
136 | if (eo_isa(obj, ELM_OBJ_HOVERSEL_CLASS)) | 142 | if (eo_isa(obj, ELM_OBJ_HOVERSEL_CLASS)) |
137 | { | 143 | { |
138 | evas_object_smart_callback_add(obj, "selected", _view_cbs->property_update_cb_func, NULL); | 144 | evas_object_smart_callback_add(obj, "selected", _view_cbs->property_update_cb_func, NULL); |