diff options
Diffstat (limited to 'src/lib/elementary')
-rw-r--r-- | src/lib/elementary/efl_ui_win.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/elementary/efl_ui_win.c b/src/lib/elementary/efl_ui_win.c index 2461e1e..8ce3e59 100644 --- a/src/lib/elementary/efl_ui_win.c +++ b/src/lib/elementary/efl_ui_win.c | |||
@@ -3715,9 +3715,9 @@ _elm_win_resize_objects_eval(Evas_Object *obj, Eina_Bool force_resize) | |||
3715 | wx = wy = 1; | 3715 | wx = wy = 1; |
3716 | 3716 | ||
3717 | if (!wx) maxw = minw; | 3717 | if (!wx) maxw = minw; |
3718 | else if (maxw < 1) maxw = 32767; | 3718 | if (maxw < 1) maxw = 32767; |
3719 | if (!wy) maxh = minh; | 3719 | if (!wy) maxh = minh; |
3720 | else if (maxh < 1) maxh = 32767; | 3720 | if (maxh < 1) maxh = 32767; |
3721 | if (maxw < minw) maxw = minw; | 3721 | if (maxw < minw) maxw = minw; |
3722 | if (maxh < minh) maxh = minh; | 3722 | if (maxh < minh) maxh = minh; |
3723 | if (maxw > 32767) maxw = 32767; | 3723 | if (maxw > 32767) maxw = 32767; |