ecore_evas_cocoa: fix invalid initial requested width

This commit is contained in:
Jean Guyomarc'h 2017-03-08 22:36:30 +01:00
parent 863077ce9a
commit f6a44e6bc1
1 changed files with 1 additions and 1 deletions

View File

@ -584,7 +584,7 @@ ecore_evas_cocoa_new_internal(Ecore_Cocoa_Window *parent EINA_UNUSED, int x, int
ee->h = h;
ee->req.x = ee->x;
ee->req.y = ee->y;
ee->req.w = ee->w - ee->y;
ee->req.w = ee->w;
ee->req.h = ee->h;
ee->prop.max.w = 32767;