hermet pushed a commit to branch master. http://git.enlightenment.org/tools/enventor.git/commit/?id=fe4919db46c518294972fa0d2cc447ec2d7c8711
commit fe4919db46c518294972fa0d2cc447ec2d7c8711 Author: Hermet Park <[email protected]> Date: Sat Jul 2 14:21:34 2016 +0900 status: Fix a view size issue. It wont set the view size if the statusbar were disabled. This time, statusbar is almost mandatory function. So, regardless of statusbar activation, Enventor updates the view size and mouse cursor info. @fix T3974 --- src/bin/main.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/bin/main.c b/src/bin/main.c index ceba5a8..5af52ac 100644 --- a/src/bin/main.c +++ b/src/bin/main.c @@ -124,7 +124,7 @@ config_update_cb(void *data EINA_UNUSED) } static Eina_Bool -main_mouse_wheel_cb(void *data, int type EINA_UNUSED, void *ev) +main_mouse_wheel_cb(void *data EINA_UNUSED, int type EINA_UNUSED, void *ev) { Ecore_Event_Mouse_Wheel *event = ev; Evas_Coord x, y, w, h; @@ -440,7 +440,6 @@ enventor_live_view_resized_cb(void *data EINA_UNUSED, Enventor_Object *obj EINA_UNUSED, void *event_info) { - if (!config_stats_bar_get()) return; Enventor_Live_View_Size *size = event_info; stats_view_size_update(size->w, size->h); config_view_size_set(size->w, size->h); @@ -461,7 +460,6 @@ enventor_live_view_cursor_moved_cb(void *data EINA_UNUSED, Enventor_Object *obj EINA_UNUSED, void *event_info) { - if (!config_stats_bar_get()) return; Enventor_Live_View_Cursor *cursor = event_info; stats_cursor_pos_update(cursor->x, cursor->y, cursor->relx, cursor->rely); base_edc_navigator_deselect(); --
